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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
6 | 6 |
7 gypi_values = exec_script( | 7 gypi_values = exec_script( |
8 "//build/gypi_to_gn.py", | 8 "//build/gypi_to_gn.py", |
9 [ rebase_path("../chrome_common.gypi") ], | 9 [ rebase_path("../chrome_common.gypi") ], |
10 "scope", | 10 "scope", |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 "//components/bookmarks/common", | 284 "//components/bookmarks/common", |
285 "//third_party/widevine/cdm:version_h", | 285 "//third_party/widevine/cdm:version_h", |
286 ] | 286 ] |
287 | 287 |
288 if (enable_nacl) { | 288 if (enable_nacl) { |
289 deps += [ | 289 deps += [ |
290 #'../components/nacl.gyp:nacl_switches', TODO(GYP) | 290 #'../components/nacl.gyp:nacl_switches', TODO(GYP) |
291 ] | 291 ] |
292 } | 292 } |
293 } | 293 } |
| 294 |
| 295 source_set("test_support") { |
| 296 testonly = true |
| 297 visibility = [ "//chrome/test:test_support" ] |
| 298 |
| 299 sources = [ |
| 300 "extensions/extension_test_util.cc", |
| 301 "extensions/extension_test_util.h", |
| 302 ] |
| 303 |
| 304 deps = [ |
| 305 ":common", |
| 306 "//base", |
| 307 "//testing/gtest", |
| 308 ] |
| 309 |
| 310 if (is_win || is_mac) { |
| 311 sources += [ |
| 312 "media_galleries/picasa_test_util.cc", |
| 313 "media_galleries/picasa_test_util.cc", |
| 314 "media_galleries/pmp_test_util.cc", |
| 315 "media_galleries/pmp_test_util.h", |
| 316 ] |
| 317 } |
| 318 |
| 319 } |
OLD | NEW |