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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1283 } | 1283 } |
1284 | 1284 |
1285 if (enable_app_list) { | 1285 if (enable_app_list) { |
1286 sources += [ | 1286 sources += [ |
1287 "ui/app_list/test/chrome_app_list_test_support.cc", | 1287 "ui/app_list/test/chrome_app_list_test_support.cc", |
1288 "ui/app_list/test/chrome_app_list_test_support.h", | 1288 "ui/app_list/test/chrome_app_list_test_support.h", |
1289 "ui/app_list/test/test_app_list_controller_delegate.cc", | 1289 "ui/app_list/test/test_app_list_controller_delegate.cc", |
1290 "ui/app_list/test/test_app_list_controller_delegate.h", | 1290 "ui/app_list/test/test_app_list_controller_delegate.h", |
1291 ] | 1291 ] |
1292 } | 1292 } |
| 1293 |
| 1294 if (enable_pepper_cdms) { |
| 1295 sources += [ |
| 1296 "media/pepper_cdm_test_helper.cc", |
| 1297 "media/pepper_cdm_test_helper.h", |
| 1298 ] |
| 1299 deps += [ "//media:cdm_paths" ] |
| 1300 } |
1293 } | 1301 } |
1294 | 1302 |
1295 # In GYP this is part of test_support_ui. | 1303 # In GYP this is part of test_support_ui. |
1296 source_set("test_support_ui") { | 1304 source_set("test_support_ui") { |
1297 testonly = true | 1305 testonly = true |
1298 | 1306 |
1299 # Always include this via the main test support UI target. | 1307 # Always include this via the main test support UI target. |
1300 visibility = [ "//chrome/test:test_support_ui" ] | 1308 visibility = [ "//chrome/test:test_support_ui" ] |
1301 | 1309 |
1302 sources = [ | 1310 sources = [ |
(...skipping 22 matching lines...) Expand all Loading... |
1325 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1333 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1326 deps = [ | 1334 deps = [ |
1327 "//components/google/core/browser", | 1335 "//components/google/core/browser", |
1328 "//components/omnibox/browser", | 1336 "//components/omnibox/browser", |
1329 "//components/rlz", | 1337 "//components/rlz", |
1330 "//components/search_engines", | 1338 "//components/search_engines", |
1331 "//rlz:rlz_lib", | 1339 "//rlz:rlz_lib", |
1332 ] | 1340 ] |
1333 } | 1341 } |
1334 } | 1342 } |
OLD | NEW |