Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: chrome/browser/BUILD.gn

Issue 1606013005: Compile FileCache related files only on Chrome OS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_browser_chromeos.gypi » ('j') | components/drive.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_chromeos.gypi » ('j') | components/drive.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698