| 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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "../public/test/browser_side_navigation_test_utils.h", | 38 "../public/test/browser_side_navigation_test_utils.h", |
| 39 "../public/test/browser_test.h", | 39 "../public/test/browser_test.h", |
| 40 "../public/test/browser_test_base.cc", | 40 "../public/test/browser_test_base.cc", |
| 41 "../public/test/browser_test_base.h", | 41 "../public/test/browser_test_base.h", |
| 42 "../public/test/browser_test_utils.cc", | 42 "../public/test/browser_test_utils.cc", |
| 43 "../public/test/browser_test_utils.h", | 43 "../public/test/browser_test_utils.h", |
| 44 "../public/test/content_test_suite_base.cc", | 44 "../public/test/content_test_suite_base.cc", |
| 45 "../public/test/content_test_suite_base.h", | 45 "../public/test/content_test_suite_base.h", |
| 46 "../public/test/download_test_observer.cc", | 46 "../public/test/download_test_observer.cc", |
| 47 "../public/test/download_test_observer.h", | 47 "../public/test/download_test_observer.h", |
| 48 "../public/test/fake_associated_interface_provider_impl.cc", |
| 49 "../public/test/fake_associated_interface_provider_impl.h", |
| 48 "../public/test/fake_speech_recognition_manager.cc", | 50 "../public/test/fake_speech_recognition_manager.cc", |
| 49 "../public/test/fake_speech_recognition_manager.h", | 51 "../public/test/fake_speech_recognition_manager.h", |
| 50 "../public/test/frame_load_waiter.cc", | 52 "../public/test/frame_load_waiter.cc", |
| 51 "../public/test/frame_load_waiter.h", | 53 "../public/test/frame_load_waiter.h", |
| 52 "../public/test/javascript_test_observer.cc", | 54 "../public/test/javascript_test_observer.cc", |
| 53 "../public/test/javascript_test_observer.h", | 55 "../public/test/javascript_test_observer.h", |
| 54 "../public/test/memory_coordinator_test_utils.cc", | 56 "../public/test/memory_coordinator_test_utils.cc", |
| 55 "../public/test/memory_coordinator_test_utils.h", | 57 "../public/test/memory_coordinator_test_utils.h", |
| 56 "../public/test/mock_blob_url_request_context.cc", | 58 "../public/test/mock_blob_url_request_context.cc", |
| 57 "../public/test/mock_blob_url_request_context.h", | 59 "../public/test/mock_blob_url_request_context.h", |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 deps += [ "//content/public/app:both" ] | 433 deps += [ "//content/public/app:both" ] |
| 432 } else { | 434 } else { |
| 433 deps += [ "//content/public/browser" ] | 435 deps += [ "//content/public/browser" ] |
| 434 } | 436 } |
| 435 | 437 |
| 436 configs += [ "//v8:external_startup_data" ] | 438 configs += [ "//v8:external_startup_data" ] |
| 437 } | 439 } |
| 438 | 440 |
| 439 mojom("content_test_mojo_bindings") { | 441 mojom("content_test_mojo_bindings") { |
| 440 sources = [ | 442 sources = [ |
| 443 "../public/test/foo_interface.mojom", |
| 441 "../public/test/test_service.mojom", | 444 "../public/test/test_service.mojom", |
| 442 "test_browser_associated_interfaces.mojom", | 445 "test_browser_associated_interfaces.mojom", |
| 443 ] | 446 ] |
| 444 } | 447 } |
| 445 | 448 |
| 446 mojom("web_ui_test_mojo_bindings") { | 449 mojom("web_ui_test_mojo_bindings") { |
| 447 sources = [ | 450 sources = [ |
| 448 "data/web_ui_test_mojo_bindings.mojom", | 451 "data/web_ui_test_mojo_bindings.mojom", |
| 449 ] | 452 ] |
| 450 } | 453 } |
| (...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1740 if (is_android) { | 1743 if (is_android) { |
| 1741 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1744 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1742 } | 1745 } |
| 1743 } | 1746 } |
| 1744 | 1747 |
| 1745 group("fuzzers") { | 1748 group("fuzzers") { |
| 1746 deps = [ | 1749 deps = [ |
| 1747 "//content/test/fuzzer", | 1750 "//content/test/fuzzer", |
| 1748 ] | 1751 ] |
| 1749 } | 1752 } |
| OLD | NEW |