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/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 # See comment at the top of //content/BUILD.gn for why this is disabled in | 24 # See comment at the top of //content/BUILD.gn for why this is disabled in |
25 # component builds. | 25 # component builds. |
26 if (is_component_build) { | 26 if (is_component_build) { |
27 check_includes = false | 27 check_includes = false |
28 } | 28 } |
29 | 29 |
30 sources = [ | 30 sources = [ |
31 "../browser/download/mock_download_file.cc", | 31 "../browser/download/mock_download_file.cc", |
32 "../browser/download/mock_download_file.h", | 32 "../browser/download/mock_download_file.h", |
| 33 "../browser/media/session/mock_media_session_observer.cc", |
| 34 "../browser/media/session/mock_media_session_observer.h", |
33 "../browser/service_worker/embedded_worker_test_helper.cc", | 35 "../browser/service_worker/embedded_worker_test_helper.cc", |
34 "../browser/service_worker/embedded_worker_test_helper.h", | 36 "../browser/service_worker/embedded_worker_test_helper.h", |
35 "../public/test/async_file_test_helper.cc", | 37 "../public/test/async_file_test_helper.cc", |
36 "../public/test/async_file_test_helper.h", | 38 "../public/test/async_file_test_helper.h", |
37 "../public/test/background_sync_test_util.cc", | 39 "../public/test/background_sync_test_util.cc", |
38 "../public/test/background_sync_test_util.h", | 40 "../public/test/background_sync_test_util.h", |
39 "../public/test/browser_side_navigation_test_utils.cc", | 41 "../public/test/browser_side_navigation_test_utils.cc", |
40 "../public/test/browser_side_navigation_test_utils.h", | 42 "../public/test/browser_side_navigation_test_utils.h", |
41 "../public/test/browser_test.h", | 43 "../public/test/browser_test.h", |
42 "../public/test/browser_test_base.cc", | 44 "../public/test/browser_test_base.cc", |
(...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1772 if (is_android) { | 1774 if (is_android) { |
1773 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1775 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1774 } | 1776 } |
1775 } | 1777 } |
1776 | 1778 |
1777 group("fuzzers") { | 1779 group("fuzzers") { |
1778 deps = [ | 1780 deps = [ |
1779 "//content/test/fuzzer", | 1781 "//content/test/fuzzer", |
1780 ] | 1782 ] |
1781 } | 1783 } |
OLD | NEW |