blob: 83791bcddd23f32687647483d6b1b3960f2bdca3 [file] [log] [blame]
Ryo Hashimotoefd7e252025-03-31 00:46:151# Copyright 2025 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/config/android/rules.gni")
Ryo Hashimotob0060fe2025-04-03 23:38:396import("//content/browser/devtools/features.gni")
Ryo Hashimotoefd7e252025-03-31 00:46:157import("//third_party/jni_zero/jni_zero.gni")
8
9generate_jni("jni") {
10 sources = [
11 "java/src/org/chromium/chrome/browser/devtools/DevToolsWindowAndroid.java",
12 ]
13}
14
15android_library("java") {
16 sources = [
17 "java/src/org/chromium/chrome/browser/devtools/DevToolsWindowAndroid.java",
18 ]
19 deps = [
20 "//content/public/android:content_java",
21 "//third_party/jni_zero:jni_zero_java",
22 ]
23 srcjar_deps = [ ":jni" ]
24}
25
26source_set("android") {
27 sources = [ "devtools_window_android.cc" ]
28 deps = [
29 ":jni",
30 "//build:android_buildflags",
31 "//chrome/browser/devtools",
32 "//third_party/jni_zero",
33 ]
Ryo Hashimotob0060fe2025-04-03 23:38:3934 if (enable_devtools_frontend) {
Ryo Hashimotoefd7e252025-03-31 00:46:1535 deps += [ "//chrome/browser/devtools" ]
36 }
37}