Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Side by Side Diff: content/shell/android/BUILD.gn

Issue 2885203004: Refactor content/renderer/device_sensors to use device/generic_sensor instead of device/sensors (Closed)
Patch Set: updated content/renderer/BUILD.gn Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 import("//third_party/icu/config.gni") 7 import("//third_party/icu/config.gni")
8 8
9 generate_jni("content_shell_jni_headers") { 9 generate_jni("content_shell_jni_headers") {
10 jni_package = "content/shell" 10 jni_package = "content/shell"
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "javatests/src/org/chromium/content_shell_apk/ContentShellTestCommon.java", 157 "javatests/src/org/chromium/content_shell_apk/ContentShellTestCommon.java",
158 "javatests/src/org/chromium/content_shell_apk/ContentShellActivityTestRule.j ava", 158 "javatests/src/org/chromium/content_shell_apk/ContentShellActivityTestRule.j ava",
159 "javatests/src/org/chromium/content_shell_apk/ContentShellUrlTest.java", 159 "javatests/src/org/chromium/content_shell_apk/ContentShellUrlTest.java",
160 ] 160 ]
161 } 161 }
162 162
163 instrumentation_test_apk("content_shell_test_apk") { 163 instrumentation_test_apk("content_shell_test_apk") {
164 deps = [ 164 deps = [
165 "//base:base_javatests", 165 "//base:base_javatests",
166 "//content/public/android:content_javatests", 166 "//content/public/android:content_javatests",
167 "//device/sensors:javatests",
168 "//net/android:net_javatests", 167 "//net/android:net_javatests",
169 "//third_party/android_support_test_runner:runner_java", 168 "//third_party/android_support_test_runner:runner_java",
170 ] 169 ]
171 apk_under_test = ":content_shell_apk" 170 apk_under_test = ":content_shell_apk"
172 apk_name = "ContentShellTest" 171 apk_name = "ContentShellTest"
173 android_manifest = "javatests/AndroidManifest.xml" 172 android_manifest = "javatests/AndroidManifest.xml"
174 } 173 }
175 174
176 if (current_cpu != "x64") { 175 if (current_cpu != "x64") {
177 chromium_linker_test_manifest = 176 chromium_linker_test_manifest =
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 testonly = true 264 testonly = true
266 deps = [ 265 deps = [
267 ":content_shell_java", 266 ":content_shell_java",
268 "//base:base_java", 267 "//base:base_java",
269 "//content/public/android:content_java", 268 "//content/public/android:content_java",
270 "//testing/android/native_test:native_test_java", 269 "//testing/android/native_test:native_test_java",
271 "//ui/android:ui_java", 270 "//ui/android:ui_java",
272 ] 271 ]
273 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ] 272 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte ntShellBrowserTestActivity.java" ]
274 } 273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698