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

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/browser/chromeos/BUILD.gn » ('j') | no next file with comments »
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 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after
1276 "extensions/test_extension_service.h", 1276 "extensions/test_extension_service.h",
1277 "extensions/test_extension_system.cc", 1277 "extensions/test_extension_system.cc",
1278 "extensions/test_extension_system.h", 1278 "extensions/test_extension_system.h",
1279 "media_galleries/media_galleries_test_util.cc", 1279 "media_galleries/media_galleries_test_util.cc",
1280 "media_galleries/media_galleries_test_util.h", 1280 "media_galleries/media_galleries_test_util.h",
1281 ] 1281 ]
1282 deps += [ 1282 deps += [
1283 "//components/drive:test_support", 1283 "//components/drive:test_support",
1284 "//components/storage_monitor:test_support", 1284 "//components/storage_monitor:test_support",
1285 ] 1285 ]
1286
1287 if (is_chromeos) {
1288 deps += [ "//components/drive:test_support_chromeos" ]
hashimoto 2016/01/22 06:29:47 Can't this be also moved to chrome/browser/chromeo
yawano 2016/01/22 06:43:56 Done.
1289 }
1286 } 1290 }
1287 1291
1288 if (enable_mdns) { 1292 if (enable_mdns) {
1289 sources += [ 1293 sources += [
1290 "local_discovery/test_service_discovery_client.cc", 1294 "local_discovery/test_service_discovery_client.cc",
1291 "local_discovery/test_service_discovery_client.h", 1295 "local_discovery/test_service_discovery_client.h",
1292 ] 1296 ]
1293 } 1297 }
1294 1298
1295 if (enable_app_list) { 1299 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") 1338 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1335 deps = [ 1339 deps = [
1336 "//components/google/core/browser", 1340 "//components/google/core/browser",
1337 "//components/omnibox/browser", 1341 "//components/omnibox/browser",
1338 "//components/rlz", 1342 "//components/rlz",
1339 "//components/search_engines", 1343 "//components/search_engines",
1340 "//rlz:rlz_lib", 1344 "//rlz:rlz_lib",
1341 ] 1345 ]
1342 } 1346 }
1343 } 1347 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698