| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 | 7 |
| 8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", | 8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("../../content_jni.gypi") ], | 9 [ rebase_path("../../content_jni.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "//ui/android:ui_java", | 43 "//ui/android:ui_java", |
| 44 "//third_party/jsr-305:jsr_305_javalib", | 44 "//third_party/jsr-305:jsr_305_javalib", |
| 45 "//third_party/WebKit/public:blink_headers_java", | 45 "//third_party/WebKit/public:blink_headers_java", |
| 46 | 46 |
| 47 #"//content:content_common", | 47 #"//content:content_common", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 srcjar_deps = [ | 50 srcjar_deps = [ |
| 51 ":common_aidl", | 51 ":common_aidl", |
| 52 ":content_public_android_java_enums_srcjar", | 52 ":content_public_android_java_enums_srcjar", |
| 53 "//ui/accessibility:ax_enumerations_srcjar", |
| 53 "//ui/touch_selection:ui_touch_selection_enums_srcjar", | 54 "//ui/touch_selection:ui_touch_selection_enums_srcjar", |
| 54 "//ui/touch_selection:ui_touch_handle_orientation_srcjar", | 55 "//ui/touch_selection:ui_touch_handle_orientation_srcjar", |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 DEPRECATED_java_in_dir = "java/src" | 58 DEPRECATED_java_in_dir = "java/src" |
| 58 } | 59 } |
| 59 | 60 |
| 60 java_strings_grd("content_strings_grd") { | 61 java_strings_grd("content_strings_grd") { |
| 61 grd_file = "java/strings/android_content_strings.grd" | 62 grd_file = "java/strings/android_content_strings.grd" |
| 62 outputs = [ | 63 outputs = [ |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 # GYP: //content/content_tests.gypi:content_junit_tests | 186 # GYP: //content/content_tests.gypi:content_junit_tests |
| 186 junit_binary("content_junit_tests") { | 187 junit_binary("content_junit_tests") { |
| 187 java_files = [ "junit/src/org/chromium/content/browser/input/GamepadMappingsTe
st.java" ] | 188 java_files = [ "junit/src/org/chromium/content/browser/input/GamepadMappingsTe
st.java" ] |
| 188 deps = [ | 189 deps = [ |
| 189 ":content_java", | 190 ":content_java", |
| 190 "//base:base_java", | 191 "//base:base_java", |
| 191 "//base:base_java_test_support", | 192 "//base:base_java_test_support", |
| 192 ] | 193 ] |
| 193 } | 194 } |
| 194 # TODO(GYP): content_icudata | 195 # TODO(GYP): content_icudata |
| OLD | NEW |