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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
448 "//chrome/common/extensions/api:api_registration", | 448 "//chrome/common/extensions/api:api_registration", |
449 "//components/drive:drive", | 449 "//components/drive:drive", |
450 "//components/proximity_auth/ble", | 450 "//components/proximity_auth/ble", |
451 "//components/proximity_auth/cryptauth", | 451 "//components/proximity_auth/cryptauth", |
452 "//extensions/components/javascript_dialog_extensions_client", | 452 "//extensions/components/javascript_dialog_extensions_client", |
453 "//media/cast:net", | 453 "//media/cast:net", |
454 ] | 454 ] |
455 sources += rebase_path(gypi_values.chrome_browser_extensions_sources, | 455 sources += rebase_path(gypi_values.chrome_browser_extensions_sources, |
456 ".", | 456 ".", |
457 "//chrome") | 457 "//chrome") |
458 if (is_chromeos) { | |
459 deps += [ "//components/drive:drive_chromeos" ] | |
hashimoto
2016/01/22 05:39:22
Isn't it better to put this in chrome/browser/chro
yawano
2016/01/22 06:18:59
Done.
| |
460 } | |
458 } | 461 } |
459 if (enable_background) { | 462 if (enable_background) { |
460 sources += rebase_path(gypi_values.chrome_browser_background_sources, | 463 sources += rebase_path(gypi_values.chrome_browser_background_sources, |
461 ".", | 464 ".", |
462 "//chrome") | 465 "//chrome") |
463 if (!use_aura || is_win || is_chromeos) { | 466 if (!use_aura || is_win || is_chromeos) { |
464 sources -= [ "background/background_mode_manager_aura.cc" ] | 467 sources -= [ "background/background_mode_manager_aura.cc" ] |
465 } | 468 } |
466 } | 469 } |
467 if (enable_task_manager) { | 470 if (enable_task_manager) { |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1276 "extensions/test_extension_service.h", | 1279 "extensions/test_extension_service.h", |
1277 "extensions/test_extension_system.cc", | 1280 "extensions/test_extension_system.cc", |
1278 "extensions/test_extension_system.h", | 1281 "extensions/test_extension_system.h", |
1279 "media_galleries/media_galleries_test_util.cc", | 1282 "media_galleries/media_galleries_test_util.cc", |
1280 "media_galleries/media_galleries_test_util.h", | 1283 "media_galleries/media_galleries_test_util.h", |
1281 ] | 1284 ] |
1282 deps += [ | 1285 deps += [ |
1283 "//components/drive:test_support", | 1286 "//components/drive:test_support", |
1284 "//components/storage_monitor:test_support", | 1287 "//components/storage_monitor:test_support", |
1285 ] | 1288 ] |
1289 | |
1290 if (is_chromeos) { | |
1291 deps += [ "//components/drive:test_support_chromeos" ] | |
1292 } | |
1286 } | 1293 } |
1287 | 1294 |
1288 if (enable_mdns) { | 1295 if (enable_mdns) { |
1289 sources += [ | 1296 sources += [ |
1290 "local_discovery/test_service_discovery_client.cc", | 1297 "local_discovery/test_service_discovery_client.cc", |
1291 "local_discovery/test_service_discovery_client.h", | 1298 "local_discovery/test_service_discovery_client.h", |
1292 ] | 1299 ] |
1293 } | 1300 } |
1294 | 1301 |
1295 if (enable_app_list) { | 1302 if (enable_app_list) { |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1334 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1341 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1335 deps = [ | 1342 deps = [ |
1336 "//components/google/core/browser", | 1343 "//components/google/core/browser", |
1337 "//components/omnibox/browser", | 1344 "//components/omnibox/browser", |
1338 "//components/rlz", | 1345 "//components/rlz", |
1339 "//components/search_engines", | 1346 "//components/search_engines", |
1340 "//rlz:rlz_lib", | 1347 "//rlz:rlz_lib", |
1341 ] | 1348 ] |
1342 } | 1349 } |
1343 } | 1350 } |
OLD | NEW |