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

Side by Side Diff: chrome/BUILD.gn

Issue 461633002: Refactor language detection logic to allow non-static CLD data sources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make some of the harness factory methods private Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 if (!is_ios) { 235 if (!is_ios) {
236 deps += [ 236 deps += [
237 "//chrome/browser/devtools", 237 "//chrome/browser/devtools",
238 "//chrome/plugin", 238 "//chrome/plugin",
239 "//chrome/renderer", 239 "//chrome/renderer",
240 "//chrome/utility", 240 "//chrome/utility",
241 "//content/public/child", 241 "//content/public/child",
242 "//third_party/WebKit/public:blink_devtools_frontend_resources", 242 "//third_party/WebKit/public:blink_devtools_frontend_resources",
243 ] 243 ]
244 } 244 }
245 if (cld_version == 0 || cld_version == 2) {
246 deps += [
247 "//third_party/cld_2:cld2_platform_impl",
248 ]
249 }
245 } 250 }
246 251
247 if (is_win) { 252 if (is_win) {
248 # TODO(brettw) this duplicates "//chrome/common:version" which applies to 253 # TODO(brettw) this duplicates "//chrome/common:version" which applies to
249 # Linux. 254 # Linux.
250 process_version("version_header") { 255 process_version("version_header") {
251 # TODO(brettW) this should have more reduced visibility, but chrome/browser 256 # TODO(brettW) this should have more reduced visibility, but chrome/browser
252 # currently depends on this. 257 # currently depends on this.
253 #visibility = [ ":*" ] 258 #visibility = [ ":*" ]
254 source = "version.h.in" 259 source = "version.h.in"
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 "//chrome/browser/ui", 589 "//chrome/browser/ui",
585 "//chrome/plugin", 590 "//chrome/plugin",
586 "//chrome/renderer", 591 "//chrome/renderer",
587 "//chrome/utility", 592 "//chrome/utility",
588 "//components/enhanced_bookmarks", 593 "//components/enhanced_bookmarks",
589 "//content/public/app:browser", 594 "//content/public/app:browser",
590 ] 595 ]
591 } 596 }
592 597
593 } 598 }
OLDNEW
« no previous file with comments | « build/config/features.gni ('k') | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698