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

Unified Diff: components/translate.gypi

Issue 422843009: Add a new CldDataSource class that can be queried at runtime. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add BUILD.gn Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/translate/content/common/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/translate.gypi
diff --git a/components/translate.gypi b/components/translate.gypi
index 0c738c204767e6463115c57a57474100c1aeb0d8..1280e578deee56766bdd10d8fc4124f6ea4e9fbc 100644
--- a/components/translate.gypi
+++ b/components/translate.gypi
@@ -175,6 +175,7 @@
# Note: sources list duplicated in GN build.
'translate/content/common/translate_messages.cc',
'translate/content/common/translate_messages.h',
+ 'translate/content/common/cld_data_source.h',
],
'conditions': [
['cld2_data_source=="standalone" or cld2_data_source=="component"', {
@@ -183,6 +184,21 @@
'translate/content/common/data_file_cld_data_provider_messages.h',
]},
],
+ ['cld2_data_source=="standalone"', {
+ 'sources': [
+ 'translate/content/common/standalone_cld_data_source.cc',
+ ]},
+ ],
+ ['cld2_data_source=="component"', {
+ 'sources': [
+ 'translate/content/common/component_cld_data_source.cc',
+ ]},
+ ],
+ ['cld2_data_source=="static"', {
+ 'sources': [
+ 'translate/content/common/static_cld_data_source.cc',
+ ]},
+ ],
],
},
{
« no previous file with comments | « no previous file | components/translate/content/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698