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

Unified Diff: chrome/chrome_browser.gypi

Issue 11361051: Remove dependency on language detection library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Using enable_language_detection feature flag Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index b7b8d765d53d23639efbc88aaa6c7e49768eae33..2d3e9fe9093654a2a80eaf5a07b7a1eafd5558ed 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -51,7 +51,6 @@
'../third_party/bzip2/bzip2.gyp:bzip2',
'../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
'../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_proto_cpp',
- '../third_party/cld/cld.gyp:cld',
'../third_party/expat/expat.gyp:expat',
'../third_party/hunspell/hunspell.gyp:hunspell',
'../third_party/icu/icu.gyp:icui18n',
@@ -2536,6 +2535,16 @@
['exclude', '^browser/automation/'],
],
}],
+ ['enable_language_detection==0', {
+ 'sources!': [
+ 'browser/language_usage_metrics.cc',
+ 'browser/language_usage_metrics.h',
+ ],
+ }, { # enable_language_detection==1
+ 'dependencies': [
+ '../third_party/cld/cld.gyp:cld',
+ ],
+ }],
['enable_printing!=1', {
'sources/': [
['exclude', '^browser/ui/webui/print_preview/'],

Powered by Google App Engine
This is Rietveld 408576698