| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "test/content_test_suite.cc", | 69 "test/content_test_suite.cc", |
| 70 "test/test_content_browser_client.cc", | 70 "test/test_content_browser_client.cc", |
| 71 "test/test_content_client.cc", | 71 "test/test_content_client.cc", |
| 72 ] | 72 ] |
| 73 } else { | 73 } else { |
| 74 sources = | 74 sources = |
| 75 rebase_path(content_tests_gypi_values.test_support_content_sources, | 75 rebase_path(content_tests_gypi_values.test_support_content_sources, |
| 76 ".", | 76 ".", |
| 77 "//content") | 77 "//content") |
| 78 | 78 |
| 79 if (is_android) { |
| 80 sources -= [ |
| 81 "mock_google_streaming_server.cc", |
| 82 "mock_google_streaming_server.h", |
| 83 ] |
| 84 } |
| 79 public_deps += [ "//third_party/WebKit/public:blink" ] | 85 public_deps += [ "//third_party/WebKit/public:blink" ] |
| 80 deps += [ | 86 deps += [ |
| 81 ":content_test_mojo_bindings", | 87 ":content_test_mojo_bindings", |
| 82 "//cc", | 88 "//cc", |
| 83 "//cc:test_support", | 89 "//cc:test_support", |
| 84 "//components/scheduler:scheduler", | 90 "//components/scheduler:scheduler", |
| 85 "//components/scheduler:test_support", | 91 "//components/scheduler:test_support", |
| 86 "//content/browser/speech/proto", | 92 "//content/browser/speech/proto", |
| 87 "//content/gpu", | 93 "//content/gpu", |
| 88 "//content/public/child", | 94 "//content/public/child", |
| 89 "//content/public/plugin", | 95 "//content/public/plugin", |
| 90 "//content/public/renderer", | 96 "//content/public/renderer", |
| 91 "//content/public/utility", | 97 "//content/public/utility", |
| 92 "//content/shell:pak", | 98 "//content/shell:pak", |
| 99 "//ipc:test_support", |
| 93 "//ipc/mojo", | 100 "//ipc/mojo", |
| 94 "//media", | 101 "//media", |
| 95 "//mojo/application/public/cpp:cpp_for_chromium", | 102 "//mojo/application/public/cpp:cpp_for_chromium", |
| 96 "//mojo/environment:chromium", | 103 "//mojo/environment:chromium", |
| 97 "//storage/browser", | 104 "//storage/browser", |
| 98 "//storage/common", | 105 "//storage/common", |
| 99 "//third_party/mojo/src/mojo/edk/test:test_support", | 106 "//third_party/mojo/src/mojo/edk/test:test_support", |
| 100 "//ui/compositor:test_support", | 107 "//ui/compositor:test_support", |
| 101 "//ui/surface", | 108 "//ui/surface", |
| 102 "//v8", | 109 "//v8", |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 898 deps += [ | 905 deps += [ |
| 899 "//gpu:test_support", | 906 "//gpu:test_support", |
| 900 "//media/base/android", | 907 "//media/base/android", |
| 901 "//media/base/android:media_java", | 908 "//media/base/android:media_java", |
| 902 "//testing/gmock", | 909 "//testing/gmock", |
| 903 "//ui/android:ui_java", | 910 "//ui/android:ui_java", |
| 904 ] | 911 ] |
| 905 } | 912 } |
| 906 } | 913 } |
| 907 } | 914 } |
| OLD | NEW |