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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 # This target exists to reference other test executables to bring these files | 10 # This target exists to reference other test executables to bring these files |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 "//base", | 205 "//base", |
206 "//chrome:resources", | 206 "//chrome:resources", |
207 "//chrome:strings", | 207 "//chrome:strings", |
208 "//chrome/browser", | 208 "//chrome/browser", |
209 "//chrome/common", | 209 "//chrome/common", |
210 "//mojo/environment:chromium", | 210 "//mojo/environment:chromium", |
211 "//third_party/mojo/src/mojo/edk/system", | 211 "//third_party/mojo/src/mojo/edk/system", |
212 ] | 212 ] |
213 } | 213 } |
214 | 214 |
215 if (!is_android) { | 215 # TODO(brettw) enable on Windows. These should link but is disabled due to bot |
| 216 # capacity issues. |
| 217 if (!is_android && !is_win) { |
216 gypi_values = exec_script("//build/gypi_to_gn.py", | 218 gypi_values = exec_script("//build/gypi_to_gn.py", |
217 [ rebase_path("../chrome_tests.gypi") ], | 219 [ rebase_path("../chrome_tests.gypi") ], |
218 "scope", | 220 "scope", |
219 [ "../chrome_tests.gypi" ]) | 221 [ "../chrome_tests.gypi" ]) |
220 | 222 |
221 test("interactive_ui_tests") { | 223 test("interactive_ui_tests") { |
222 sources = rebase_path(gypi_values.chrome_interactive_ui_test_sources, | 224 sources = rebase_path(gypi_values.chrome_interactive_ui_test_sources, |
223 ".", | 225 ".", |
224 "//chrome") | 226 "//chrome") |
225 | 227 |
(...skipping 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1154 # TODO(GYP) CDM adapter stuff. | 1156 # TODO(GYP) CDM adapter stuff. |
1155 #if (enable_pepper_cdms) { | 1157 #if (enable_pepper_cdms) { |
1156 # deps += [ | 1158 # deps += [ |
1157 # "//media/cdm/ppapi:clearkeycdmadapter", | 1159 # "//media/cdm/ppapi:clearkeycdmadapter", |
1158 # "//ppapi:ppapi_cpp", | 1160 # "//ppapi:ppapi_cpp", |
1159 # "//third_party/widevine/cdm:adapter", | 1161 # "//third_party/widevine/cdm:adapter", |
1160 # ] | 1162 # ] |
1161 #} | 1163 #} |
1162 } | 1164 } |
1163 } | 1165 } |
OLD | NEW |