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

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

Issue 2714943004: Move unique name generation and tracking into //content. (Closed)
Patch Set: . Created 3 years, 9 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 107 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
108 108
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/renderer",
117 "//gin", 118 "//gin",
118 "//gpu", 119 "//gpu",
119 "//gpu/command_buffer/client:gles2_interface", 120 "//gpu/command_buffer/client:gles2_interface",
120 "//media/midi:mojo", 121 "//media/midi:mojo",
121 "//net", 122 "//net",
122 "//skia", 123 "//skia",
123 "//third_party/WebKit/public:blink", 124 "//third_party/WebKit/public:blink",
125 "//ui/accessibility:ax_gen",
dcheng 2017/03/01 23:57:25 This is likely due to trying to depend on renderer
124 "//ui/display", 126 "//ui/display",
125 "//ui/events:dom_keycode_converter", 127 "//ui/events:dom_keycode_converter",
126 "//ui/events:events_base", 128 "//ui/events:events_base",
127 "//ui/events/blink", 129 "//ui/events/blink",
128 "//ui/gfx", 130 "//ui/gfx",
129 "//ui/gfx:test_support", 131 "//ui/gfx:test_support",
130 "//ui/gfx/geometry", 132 "//ui/gfx/geometry",
131 "//url", 133 "//url",
132 "//v8", 134 "//v8",
133 ] 135 ]
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 207
206 if (use_x11) { 208 if (use_x11) {
207 deps += [ ":copy_x11_fonts" ] 209 deps += [ ":copy_x11_fonts" ]
208 data_deps += [ ":copy_x11_fonts" ] 210 data_deps += [ ":copy_x11_fonts" ]
209 } 211 }
210 if (is_android) { 212 if (is_android) {
211 deps += [ ":copy_android_fonts" ] 213 deps += [ ":copy_android_fonts" ]
212 data_deps += [ ":copy_android_fonts" ] 214 data_deps += [ ":copy_android_fonts" ]
213 } 215 }
214 } 216 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698