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