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("//build_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 sources = rebase_path(content_tests_gypi_values.test_support_content_sources, | 95 sources = rebase_path(content_tests_gypi_values.test_support_content_sources, |
96 ".", | 96 ".", |
97 "//content") | 97 "//content") |
98 | 98 |
99 if (is_android) { | 99 if (is_android) { |
100 sources -= [ | 100 sources -= [ |
101 "mock_google_streaming_server.cc", | 101 "mock_google_streaming_server.cc", |
102 "mock_google_streaming_server.h", | 102 "mock_google_streaming_server.h", |
103 ] | 103 ] |
| 104 |
| 105 deps += [ "../public/test/android:test_support_content_jni_headers" ] |
104 } | 106 } |
105 | 107 |
106 if (enable_plugins) { | 108 if (enable_plugins) { |
107 deps += [ | 109 deps += [ |
108 "//content/ppapi_plugin", | 110 "//content/ppapi_plugin", |
109 "//ppapi/host", | 111 "//ppapi/host", |
110 "//ppapi/proxy", | 112 "//ppapi/proxy", |
111 "//ppapi/proxy:test_support", | 113 "//ppapi/proxy:test_support", |
112 "//ppapi/shared_impl", | 114 "//ppapi/shared_impl", |
113 "//ppapi/shared_impl:test_support", | 115 "//ppapi/shared_impl:test_support", |
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1012 "//gpu:test_support", | 1014 "//gpu:test_support", |
1013 "//media/base/android", | 1015 "//media/base/android", |
1014 "//media/base/android:media_java", | 1016 "//media/base/android:media_java", |
1015 "//media/capture/video/android:capture_java", | 1017 "//media/capture/video/android:capture_java", |
1016 "//testing/gmock", | 1018 "//testing/gmock", |
1017 "//ui/android:ui_java", | 1019 "//ui/android:ui_java", |
1018 ] | 1020 ] |
1019 } | 1021 } |
1020 } | 1022 } |
1021 } | 1023 } |
OLD | NEW |