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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 "//content/public/renderer", | 215 "//content/public/renderer", |
216 "//content/public/utility", | 216 "//content/public/utility", |
217 "//content/test:layouttest_support", | 217 "//content/test:layouttest_support", |
218 "//gin", | 218 "//gin", |
219 "//gpu", | 219 "//gpu", |
220 "//ipc", | 220 "//ipc", |
221 "//media", | 221 "//media", |
222 "//net", | 222 "//net", |
223 "//net:net_resources", | 223 "//net:net_resources", |
224 "//skia", | 224 "//skia", |
| 225 "//third_party/WebKit/public:blink", |
| 226 "//third_party/WebKit/public:resources", |
| 227 "//third_party/WebKit/public:test_support", |
225 "//third_party/icu", | 228 "//third_party/icu", |
226 "//third_party/WebKit/public:blink", | |
227 "//third_party/WebKit/public:test_support", | |
228 "//ui/base", | 229 "//ui/base", |
229 "//ui/events:events_base", | 230 "//ui/events:events_base", |
230 "//ui/gfx", | 231 "//ui/gfx", |
231 "//ui/gfx/geometry", | 232 "//ui/gfx/geometry", |
232 "//ui/gfx/ipc", | 233 "//ui/gfx/ipc", |
233 "//ui/gl", | 234 "//ui/gl", |
234 "//url", | 235 "//url", |
235 "//v8", | 236 "//v8", |
236 "//webkit:resources", | |
237 "//webkit/browser:storage", | 237 "//webkit/browser:storage", |
| 238 "//webkit/glue/resources", |
238 #'copy_test_netscape_plugin', TODO(GYP) | 239 #'copy_test_netscape_plugin', TODO(GYP) |
239 ] | 240 ] |
240 | 241 |
241 if (is_win) { | 242 if (is_win) { |
242 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) | 243 #'LinkIncremental': '<(msvs_large_module_debug_link_mode)', TODO(GYP) |
243 | 244 |
244 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 245 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
245 cflags = [ "/wd4267" ] | 246 cflags = [ "/wd4267" ] |
246 } | 247 } |
247 | 248 |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 "$root_gen_dir/webkit/blink_resources.pak", | 401 "$root_gen_dir/webkit/blink_resources.pak", |
401 "$root_gen_dir/webkit/webkit_resources_100_percent.pak", | 402 "$root_gen_dir/webkit/webkit_resources_100_percent.pak", |
402 ] | 403 ] |
403 | 404 |
404 deps = [ | 405 deps = [ |
405 ":resources", | 406 ":resources", |
406 "//content:resources", | 407 "//content:resources", |
407 "//content/app/strings", | 408 "//content/app/strings", |
408 "//content/browser/tracing:resources", | 409 "//content/browser/tracing:resources", |
409 "//net:net_resources", | 410 "//net:net_resources", |
| 411 "//third_party/WebKit/public:resources", |
410 "//ui/resources", | 412 "//ui/resources", |
411 "//ui/strings", | 413 "//ui/strings", |
412 "//webkit:resources", | 414 "//webkit/glue/resources", |
413 ] | 415 ] |
414 | 416 |
415 if (is_android) { | 417 if (is_android) { |
416 output = "$root_out_dir/content_shell/assets/content_shell.pak" | 418 output = "$root_out_dir/content_shell/assets/content_shell.pak" |
417 } else { | 419 } else { |
418 sources += [ "$root_gen_dir/webkit/devtools_resources.pak" ] | 420 sources += [ "$root_gen_dir/webkit/devtools_resources.pak" ] |
419 deps += [ "//content/browser/devtools:resources" ] | 421 deps += [ "//content/browser/devtools:resources" ] |
420 output = "$root_out_dir/content_shell.pak" | 422 output = "$root_out_dir/content_shell.pak" |
421 } | 423 } |
422 } | 424 } |
(...skipping 29 matching lines...) Expand all Loading... |
452 } | 454 } |
453 | 455 |
454 if (!is_android || !is_android_webview_build) { | 456 if (!is_android || !is_android_webview_build) { |
455 # Some tests rely on this tool. It might be nicer if these tests relied on | 457 # Some tests rely on this tool. It might be nicer if these tests relied on |
456 # image diff rather than having content shell depend on it. | 458 # image diff rather than having content shell depend on it. |
457 datadeps = [ | 459 datadeps = [ |
458 "//tools/imagediff($host_toolchain)", | 460 "//tools/imagediff($host_toolchain)", |
459 ] | 461 ] |
460 } | 462 } |
461 } | 463 } |
OLD | NEW |