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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 | 342 |
343 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 343 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
344 | 344 |
345 if (proprietary_codecs && enable_hevc_demuxing) { | 345 if (proprietary_codecs && enable_hevc_demuxing) { |
346 defines += [ "ENABLE_HEVC_DEMUXING" ] | 346 defines += [ "ENABLE_HEVC_DEMUXING" ] |
347 } | 347 } |
348 | 348 |
349 configs += [ | 349 configs += [ |
350 "//build/config:precompiled_headers", | 350 "//build/config:precompiled_headers", |
351 "//build/config/compiler:no_size_t_to_int_warning", | 351 "//build/config/compiler:no_size_t_to_int_warning", |
| 352 "//content/public/common:mojo_shell_client", |
352 ] | 353 ] |
353 | 354 |
354 deps = [ | 355 deps = [ |
355 ":browsertest_support", | 356 ":browsertest_support", |
356 ":web_ui_test_mojo_bindings", | 357 ":web_ui_test_mojo_bindings", |
357 "//base/allocator", | 358 "//base/allocator", |
358 "//base/test:test_support", | 359 "//base/test:test_support", |
359 "//content/browser/background_sync:background_sync_proto", | 360 "//content/browser/background_sync:background_sync_proto", |
360 "//content/common:mojo_bindings", | 361 "//content/common:mojo_bindings", |
361 "//content/gpu", | 362 "//content/gpu", |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 "//media/test/data/", | 543 "//media/test/data/", |
543 ] | 544 ] |
544 | 545 |
545 if (is_android) { | 546 if (is_android) { |
546 data += [ "$root_out_dir/content_shell_assets/content_shell.pak" ] | 547 data += [ "$root_out_dir/content_shell_assets/content_shell.pak" ] |
547 } else { | 548 } else { |
548 data += [ "$root_out_dir/content_shell.pak" ] | 549 data += [ "$root_out_dir/content_shell.pak" ] |
549 } | 550 } |
550 } | 551 } |
551 | 552 |
552 configs += [ "//build/config:precompiled_headers" ] | 553 configs += [ |
| 554 "//build/config:precompiled_headers", |
| 555 "//content/public/common:mojo_shell_client", |
| 556 ] |
553 | 557 |
554 deps = [ | 558 deps = [ |
555 ":test_support", | 559 ":test_support", |
556 "//base/allocator", | 560 "//base/allocator", |
557 "//base/test:test_support", | 561 "//base/test:test_support", |
558 "//content/browser/background_sync:background_sync_proto", | 562 "//content/browser/background_sync:background_sync_proto", |
559 "//content/browser/cache_storage:cache_storage_proto", | 563 "//content/browser/cache_storage:cache_storage_proto", |
560 "//content/browser/notifications:notification_proto", | 564 "//content/browser/notifications:notification_proto", |
561 "//content/browser/service_worker:service_worker_proto", | 565 "//content/browser/service_worker:service_worker_proto", |
562 "//content/browser/speech/proto", | 566 "//content/browser/speech/proto", |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 "//gpu/blink", | 859 "//gpu/blink", |
856 "//testing/gtest", | 860 "//testing/gtest", |
857 "//third_party/WebKit/public:blink", | 861 "//third_party/WebKit/public:blink", |
858 "//ui/base", | 862 "//ui/base", |
859 "//ui/gfx", | 863 "//ui/gfx", |
860 "//ui/gfx/geometry", | 864 "//ui/gfx/geometry", |
861 "//ui/gl", | 865 "//ui/gl", |
862 "//ui/gl:test_support", | 866 "//ui/gl:test_support", |
863 ] | 867 ] |
864 } | 868 } |
OLD | NEW |