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

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

Issue 1371863002: Android: Do not build files not needed on the platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/prefs/browser_prefs.cc » ('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("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 "//ui/gfx", 1097 "//ui/gfx",
1098 ] 1098 ]
1099 1099
1100 if (!is_ios) { 1100 if (!is_ios) {
1101 deps += [ 1101 deps += [
1102 "//components/sessions:test_support", 1102 "//components/sessions:test_support",
1103 "//google_apis:test_support", 1103 "//google_apis:test_support",
1104 ] 1104 ]
1105 } 1105 }
1106 1106
1107 if (is_android) {
1108 sources -= [
1109 "sessions/session_service_test_helper.cc",
1110 "sessions/session_service_test_helper.h",
1111 "ui/webui/signin/login_ui_test_utils.cc",
1112 "ui/webui/signin/login_ui_test_utils.h",
1113 ]
1114 }
1115
1107 if (enable_extensions) { 1116 if (enable_extensions) {
1108 sources += [ 1117 sources += [
1109 "extensions/extension_action_test_util.cc", 1118 "extensions/extension_action_test_util.cc",
1110 "extensions/extension_action_test_util.h", 1119 "extensions/extension_action_test_util.h",
1111 ] 1120 ]
1112 deps += [ "//extensions:test_support" ] 1121 deps += [ "//extensions:test_support" ]
1113 } 1122 }
1114 1123
1115 if (is_chromeos) { 1124 if (is_chromeos) {
1116 sources += [ 1125 sources += [
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1246 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") 1255 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
1247 deps = [ 1256 deps = [
1248 "//components/google/core/browser", 1257 "//components/google/core/browser",
1249 "//components/omnibox/browser", 1258 "//components/omnibox/browser",
1250 "//components/rlz", 1259 "//components/rlz",
1251 "//components/search_engines", 1260 "//components/search_engines",
1252 "//rlz:rlz_lib", 1261 "//rlz:rlz_lib",
1253 ] 1262 ]
1254 } 1263 }
1255 } 1264 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/prefs/browser_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698