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

Side by Side Diff: device/BUILD.gn

Issue 2492183002: Add struct_traits and typemap for blink::WebGamepad (Closed)
Patch Set: code rebase Created 4 years 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 | « no previous file | device/gamepad/public/interfaces/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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm", 55 "bluetooth/test/mock_bluetooth_cbperipheral_mac.mm",
56 "bluetooth/test/mock_bluetooth_cbservice_mac.h", 56 "bluetooth/test/mock_bluetooth_cbservice_mac.h",
57 "bluetooth/test/mock_bluetooth_cbservice_mac.mm", 57 "bluetooth/test/mock_bluetooth_cbservice_mac.mm",
58 "bluetooth/test/mock_bluetooth_central_manager_mac.h", 58 "bluetooth/test/mock_bluetooth_central_manager_mac.h",
59 "bluetooth/test/mock_bluetooth_central_manager_mac.mm", 59 "bluetooth/test/mock_bluetooth_central_manager_mac.mm",
60 "bluetooth/test/test_bluetooth_adapter_observer.cc", 60 "bluetooth/test/test_bluetooth_adapter_observer.cc",
61 "bluetooth/test/test_bluetooth_adapter_observer.h", 61 "bluetooth/test/test_bluetooth_adapter_observer.h",
62 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc", 62 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc",
63 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h", 63 "bluetooth/test/test_bluetooth_local_gatt_service_delegate.h",
64 "gamepad/gamepad_provider_unittest.cc", 64 "gamepad/gamepad_provider_unittest.cc",
65 "gamepad/public/interfaces/gamepad_struct_traits_unittest.cc",
65 "generic_sensor/platform_sensor_and_provider_unittest_win.cc", 66 "generic_sensor/platform_sensor_and_provider_unittest_win.cc",
66 "generic_sensor/platform_sensor_provider_unittest.cc", 67 "generic_sensor/platform_sensor_provider_unittest.cc",
67 "power_monitor/power_monitor_message_broadcaster_unittest.cc", 68 "power_monitor/power_monitor_message_broadcaster_unittest.cc",
68 "power_monitor/public/cpp/power_monitor_broadcast_source_unittest.cc", 69 "power_monitor/public/cpp/power_monitor_broadcast_source_unittest.cc",
69 "test/run_all_unittests.cc", 70 "test/run_all_unittests.cc",
70 "wake_lock/wake_lock_service_context_unittest.cc", 71 "wake_lock/wake_lock_service_context_unittest.cc",
71 ] 72 ]
72 73
73 deps = [ 74 deps = [
74 "//base/test:test_support", 75 "//base/test:test_support",
75 "//base/third_party/dynamic_annotations:dynamic_annotations", 76 "//base/third_party/dynamic_annotations:dynamic_annotations",
76 "//device/base/synchronization", 77 "//device/base/synchronization",
77 "//device/battery", 78 "//device/battery",
78 "//device/battery:mojo_bindings", 79 "//device/battery:mojo_bindings",
79 "//device/bluetooth", 80 "//device/bluetooth",
80 "//device/bluetooth:mocks", 81 "//device/bluetooth:mocks",
81 "//device/bluetooth:mojo", 82 "//device/bluetooth:mojo",
82 "//device/gamepad", 83 "//device/gamepad",
83 "//device/gamepad:test_helpers", 84 "//device/gamepad:test_helpers",
85 "//device/gamepad/public/interfaces",
86 "//device/gamepad/public/interfaces:gamepad_struct_traits_test",
84 "//device/generic_sensor", 87 "//device/generic_sensor",
85 "//device/generic_sensor:testing", 88 "//device/generic_sensor:testing",
86 "//device/geolocation:unittests", 89 "//device/geolocation:unittests",
87 "//device/power_monitor", 90 "//device/power_monitor",
88 "//device/power_monitor/public/cpp", 91 "//device/power_monitor/public/cpp",
89 "//device/power_monitor/public/interfaces", 92 "//device/power_monitor/public/interfaces",
90 "//device/power_save_blocker", 93 "//device/power_save_blocker",
91 "//device/wake_lock", 94 "//device/wake_lock",
92 "//mojo/common", 95 "//mojo/common",
93 "//mojo/edk/system", 96 "//mojo/edk/system",
94 "//mojo/public/cpp/bindings", 97 "//mojo/public/cpp/bindings",
95 "//net", 98 "//net",
96 "//testing/gmock", 99 "//testing/gmock",
97 "//testing/gtest", 100 "//testing/gtest",
101 "//third_party/WebKit/public:blink_headers",
98 "//tools/usb_gadget", 102 "//tools/usb_gadget",
99 "//url", 103 "//url",
100 ] 104 ]
101 105
102 if (is_linux && !is_chromeos && use_dbus) { 106 if (is_linux && !is_chromeos && use_dbus) {
103 sources += [ "battery/battery_status_manager_linux_unittest.cc" ] 107 sources += [ "battery/battery_status_manager_linux_unittest.cc" ]
104 deps += [ "//dbus:test_support" ] 108 deps += [ "//dbus:test_support" ]
105 } 109 }
106 110
107 if (is_linux) { 111 if (is_linux) {
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 ] 290 ]
287 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ] 291 srcjar_deps = [ "//device/gamepad:java_enums_srcjar" ]
288 } 292 }
289 293
290 java_cpp_enum("bluetooth_test_javagen") { 294 java_cpp_enum("bluetooth_test_javagen") {
291 sources = [ 295 sources = [
292 "bluetooth/test/bluetooth_test.h", 296 "bluetooth/test/bluetooth_test.h",
293 ] 297 ]
294 } 298 }
295 } 299 }
OLDNEW
« no previous file with comments | « no previous file | device/gamepad/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698