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

Unified Diff: components/omaha_query_params.gypi

Issue 333353005: Move OmahaQueryParams to a component and add a delegate interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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
Index: components/omaha_query_params.gypi
diff --git a/components/autocomplete.gypi b/components/omaha_query_params.gypi
similarity index 65%
copy from components/autocomplete.gypi
copy to components/omaha_query_params.gypi
index f8d3d148e7ad54b80bf38c39a78e799c350e0c03..3b36b8041a9b93690b69524e1dd05f0bd7cbf198 100644
--- a/components/autocomplete.gypi
+++ b/components/omaha_query_params.gypi
@@ -5,17 +5,18 @@
{
'targets': [
{
- 'target_name': 'autocomplete',
+ 'target_name': 'omaha_query_params',
'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- ],
'include_dirs': [
'..',
],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
jochen (gone - plz use gerrit) 2014/06/24 08:52:31 why do you depend on content_browser but the DEPS
+ ],
'sources': [
- 'autocomplete/url_prefix.cc',
- 'autocomplete/url_prefix.h',
+ 'omaha_query_params/omaha_query_params.cc',
+ 'omaha_query_params/omaha_query_params.h',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698