OLD | NEW |
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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 "//content/public/renderer", | 220 "//content/public/renderer", |
221 "//content/public/utility", | 221 "//content/public/utility", |
222 "//content/test:layouttest_support", | 222 "//content/test:layouttest_support", |
223 "//gin", | 223 "//gin", |
224 "//gpu", | 224 "//gpu", |
225 "//ipc", | 225 "//ipc", |
226 "//media", | 226 "//media", |
227 "//net", | 227 "//net", |
228 "//net:net_resources", | 228 "//net:net_resources", |
229 "//skia", | 229 "//skia", |
| 230 "//storage/browser", |
230 "//third_party/WebKit/public:blink", | 231 "//third_party/WebKit/public:blink", |
231 "//third_party/WebKit/public:resources", | 232 "//third_party/WebKit/public:resources", |
232 "//third_party/WebKit/public:test_support", | 233 "//third_party/WebKit/public:test_support", |
233 "//third_party/icu", | 234 "//third_party/icu", |
234 "//ui/base", | 235 "//ui/base", |
235 "//ui/events:events_base", | 236 "//ui/events:events_base", |
236 "//ui/gfx", | 237 "//ui/gfx", |
237 "//ui/gfx/geometry", | 238 "//ui/gfx/geometry", |
238 "//ui/gfx/ipc", | 239 "//ui/gfx/ipc", |
239 "//ui/gl", | 240 "//ui/gl", |
240 "//url", | 241 "//url", |
241 "//v8", | 242 "//v8", |
242 "//webkit/browser:storage", | |
243 #'copy_test_netscape_plugin', TODO(GYP) | 243 #'copy_test_netscape_plugin', TODO(GYP) |
244 ] | 244 ] |
245 | 245 |
246 if (is_win) { | 246 if (is_win) { |
247 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) | 247 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) |
248 | 248 |
249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 249 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
250 cflags = [ "/wd4267" ] | 250 cflags = [ "/wd4267" ] |
251 } | 251 } |
252 | 252 |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 } | 458 } |
459 | 459 |
460 if (!is_android || !is_android_webview_build) { | 460 if (!is_android || !is_android_webview_build) { |
461 # Some tests rely on this tool. It might be nicer if these tests relied on | 461 # Some tests rely on this tool. It might be nicer if these tests relied on |
462 # image diff rather than having content shell depend on it. | 462 # image diff rather than having content shell depend on it. |
463 datadeps = [ | 463 datadeps = [ |
464 "//tools/imagediff($host_toolchain)", | 464 "//tools/imagediff($host_toolchain)", |
465 ] | 465 ] |
466 } | 466 } |
467 } | 467 } |
OLD | NEW |