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

Side by Side Diff: content/shell/test_runner/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 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("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 } 9 }
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 deps = [ 109 deps = [
110 ":resources", 110 ":resources",
111 "//base:base", 111 "//base:base",
112 "//base:i18n", 112 "//base:i18n",
113 "//cc", 113 "//cc",
114 "//cc/blink", 114 "//cc/blink",
115 "//cc/paint", 115 "//cc/paint",
116 "//content/public/common", 116 "//content/public/common",
117 "//content/test:test_runner_support", 117 "//content/test:test_runner_support",
118 "//device/gamepad/public/cpp:shared_with_blink", 118 "//device/gamepad/public/cpp:shared_with_blink",
119 "//device/sensors/public/cpp:full",
120 "//gin", 119 "//gin",
121 "//gpu", 120 "//gpu",
122 "//gpu/command_buffer/client:gles2_interface", 121 "//gpu/command_buffer/client:gles2_interface",
123 "//media/midi:mojo", 122 "//media/midi:mojo",
124 "//net", 123 "//net",
125 "//skia", 124 "//skia",
126 "//third_party/WebKit/public:blink", 125 "//third_party/WebKit/public:blink",
127 "//ui/display", 126 "//ui/display",
128 "//ui/events:dom_keycode_converter", 127 "//ui/events:dom_keycode_converter",
129 "//ui/events:events_base", 128 "//ui/events:events_base",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 207
209 if (use_x11) { 208 if (use_x11) {
210 deps += [ ":copy_x11_fonts" ] 209 deps += [ ":copy_x11_fonts" ]
211 data_deps += [ ":copy_x11_fonts" ] 210 data_deps += [ ":copy_x11_fonts" ]
212 } 211 }
213 if (is_android) { 212 if (is_android) {
214 deps += [ ":copy_android_fonts" ] 213 deps += [ ":copy_android_fonts" ]
215 data_deps += [ ":copy_android_fonts" ] 214 data_deps += [ ":copy_android_fonts" ]
216 } 215 }
217 } 216 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698