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

Side by Side Diff: content/public/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 7
8 android_aidl("common_aidl") { 8 android_aidl("common_aidl") {
9 interface_file = "java/src/org/chromium/content/common/common.aidl" 9 interface_file = "java/src/org/chromium/content/common/common.aidl"
10 import_include = [ "java/src" ] 10 import_include = [ "java/src" ]
(...skipping 22 matching lines...) Expand all
33 android_library("content_java") { 33 android_library("content_java") {
34 deps = [ 34 deps = [
35 ":content_java_resources", 35 ":content_java_resources",
36 "//base:base_java", 36 "//base:base_java",
37 "//device/bluetooth:java", 37 "//device/bluetooth:java",
38 "//device/gamepad:java", 38 "//device/gamepad:java",
39 "//device/generic_sensor:java", 39 "//device/generic_sensor:java",
40 "//device/nfc:mojo_bindings_java", 40 "//device/nfc:mojo_bindings_java",
41 "//device/nfc/public/java:nfc_java", 41 "//device/nfc/public/java:nfc_java",
42 "//device/power_save_blocker:java", 42 "//device/power_save_blocker:java",
43 "//device/sensors:java",
44 "//device/usb:java", 43 "//device/usb:java",
45 "//media/base/android:media_java", 44 "//media/base/android:media_java",
46 "//media/capture/content/android:screen_capture_java", 45 "//media/capture/content/android:screen_capture_java",
47 "//media/capture/video/android:capture_java", 46 "//media/capture/video/android:capture_java",
48 "//media/midi:midi_java", 47 "//media/midi:midi_java",
49 "//media/mojo/interfaces:interfaces_java", 48 "//media/mojo/interfaces:interfaces_java",
50 "//mojo/android:system_java", 49 "//mojo/android:system_java",
51 "//mojo/common:common_custom_types_java", 50 "//mojo/common:common_custom_types_java",
52 "//mojo/public/java:bindings_java", 51 "//mojo/public/java:bindings_java",
53 "//mojo/public/java:system_java", 52 "//mojo/public/java:system_java",
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 deps = [ 481 deps = [
483 ":content_java", 482 ":content_java",
484 "//base:base_java", 483 "//base:base_java",
485 "//base:base_java_test_support", 484 "//base:base_java_test_support",
486 "//media/mojo/interfaces:interfaces_java", 485 "//media/mojo/interfaces:interfaces_java",
487 "//mojo/public/java:bindings_java", 486 "//mojo/public/java:bindings_java",
488 "//third_party/WebKit/public:android_mojo_bindings_java", 487 "//third_party/WebKit/public:android_mojo_bindings_java",
489 "//ui/gfx/geometry/mojo:mojo_java", 488 "//ui/gfx/geometry/mojo:mojo_java",
490 ] 489 ]
491 } 490 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698