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

Side by Side Diff: device/BUILD.gn

Issue 2678373003: [DeviceService] Move PowerMonitor interfaces, client lib, impl to live in Device Service (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « content/common/BUILD.gn ('k') | device/power_monitor/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/features.gni") 5 import("//build/config/features.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") # For generate_jni(). 9 import("//build/config/android/rules.gni") # For generate_jni().
10 } 10 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", 61 "bluetooth/test/mock_bluetooth_central_manager_mac.mm",
62 "bluetooth/test/test_bluetooth_adapter_observer.cc", 62 "bluetooth/test/test_bluetooth_adapter_observer.cc",
63 "bluetooth/test/test_bluetooth_adapter_observer.h", 63 "bluetooth/test/test_bluetooth_adapter_observer.h",
64 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", 64 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc",
65 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", 65 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h",
66 "gamepad/gamepad_provider_unittest.cc", 66 "gamepad/gamepad_provider_unittest.cc",
67 "gamepad/gamepad_service_unittest.cc", 67 "gamepad/gamepad_service_unittest.cc",
68 "gamepad/public/interfaces/gamepad_struct_traits_unittest.cc", 68 "gamepad/public/interfaces/gamepad_struct_traits_unittest.cc",
69 "generic_sensor/platform_sensor_and_provider_unittest_win.cc", 69 "generic_sensor/platform_sensor_and_provider_unittest_win.cc",
70 "generic_sensor/platform_sensor_provider_unittest.cc", 70 "generic_sensor/platform_sensor_provider_unittest.cc",
71 "power_monitor/power_monitor_message_broadcaster_unittest.cc",
72 "power_monitor/public/cpp/power_monitor_broadcast_source_unittest.cc",
73 "sensors/data_fetcher_shared_memory_base_unittest.cc", 71 "sensors/data_fetcher_shared_memory_base_unittest.cc",
74 "sensors/sensor_manager_android_unittest.cc", 72 "sensors/sensor_manager_android_unittest.cc",
75 "sensors/sensor_manager_chromeos_unittest.cc", 73 "sensors/sensor_manager_chromeos_unittest.cc",
76 "test/run_all_unittests.cc", 74 "test/run_all_unittests.cc",
77 "wake_lock/wake_lock_service_context_unittest.cc", 75 "wake_lock/wake_lock_service_context_unittest.cc",
78 ] 76 ]
79 77
80 deps = [ 78 deps = [
81 "//base/test:test_support", 79 "//base/test:test_support",
82 "//base/third_party/dynamic_annotations:dynamic_annotations", 80 "//base/third_party/dynamic_annotations:dynamic_annotations",
83 "//device/base/synchronization", 81 "//device/base/synchronization",
84 "//device/battery", 82 "//device/battery",
85 "//device/battery:mojo_bindings", 83 "//device/battery:mojo_bindings",
86 "//device/bluetooth", 84 "//device/bluetooth",
87 "//device/bluetooth:mocks", 85 "//device/bluetooth:mocks",
88 "//device/bluetooth:mojo", 86 "//device/bluetooth:mojo",
89 "//device/gamepad", 87 "//device/gamepad",
90 "//device/gamepad:test_helpers", 88 "//device/gamepad:test_helpers",
91 "//device/gamepad/public/interfaces", 89 "//device/gamepad/public/interfaces",
92 "//device/gamepad/public/interfaces:gamepad_struct_traits_test", 90 "//device/gamepad/public/interfaces:gamepad_struct_traits_test",
93 "//device/generic_sensor", 91 "//device/generic_sensor",
94 "//device/generic_sensor:testing", 92 "//device/generic_sensor:testing",
95 "//device/geolocation:unittests", 93 "//device/geolocation:unittests",
96 "//device/power_monitor",
97 "//device/power_monitor/public/cpp",
98 "//device/power_monitor/public/interfaces",
99 "//device/power_save_blocker", 94 "//device/power_save_blocker",
100 "//device/sensors", 95 "//device/sensors",
101 "//device/sensors/public/cpp", 96 "//device/sensors/public/cpp",
102 "//device/sensors/public/interfaces", 97 "//device/sensors/public/interfaces",
103 "//device/wake_lock", 98 "//device/wake_lock",
104 "//mojo/common", 99 "//mojo/common",
105 "//mojo/edk/system", 100 "//mojo/edk/system",
106 "//mojo/public/cpp/bindings", 101 "//mojo/public/cpp/bindings",
107 "//net", 102 "//net",
108 "//testing/gmock", 103 "//testing/gmock",
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 ] 305 ]
311 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] 306 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ]
312 } 307 }
313 308
314 java_cpp_enum("bluetooth_test_javagen") { 309 java_cpp_enum("bluetooth_test_javagen") {
315 sources = [ 310 sources = [
316 "bluetooth/test/bluetooth_test.h", 311 "bluetooth/test/bluetooth_test.h",
317 ] 312 ]
318 } 313 }
319 } 314 }
OLDNEW
« no previous file with comments | « content/common/BUILD.gn ('k') | device/power_monitor/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698