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

Unified Diff: components/suggestions.gypi

Issue 410673002: [Suggestions] Moving suggestions code to a new component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps 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 | « components/components_tests.gyp ('k') | components/suggestions/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/suggestions.gypi
diff --git a/components/suggestions.gypi b/components/suggestions.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..0ba3a27e7ca1df9328474b5feb28e95f2c7eae1d
--- /dev/null
+++ b/components/suggestions.gypi
@@ -0,0 +1,42 @@
+# Copyright (c) 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/suggestions
+ 'target_name': 'suggestions',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../url/url.gyp:url_lib',
+ 'components.gyp:keyed_service_core',
+ 'components.gyp:pref_registry',
+ 'components.gyp:variations',
+ ],
+ 'sources': [
+ 'suggestions/blacklist_store.cc',
+ 'suggestions/blacklist_store.h',
+ 'suggestions/image_manager.h',
+ 'suggestions/proto/suggestions.proto',
+ 'suggestions/suggestions_pref_names.cc',
+ 'suggestions/suggestions_pref_names.h',
+ 'suggestions/suggestions_service.cc',
+ 'suggestions/suggestions_service.h',
+ 'suggestions/suggestions_store.cc',
+ 'suggestions/suggestions_store.h',
+ ],
+ 'variables': {
+ 'proto_in_dir': 'suggestions/proto',
+ 'proto_out_dir': 'components/suggestions/proto',
+ },
+ 'includes': [ '../build/protoc.gypi' ],
+ },
+ ],
+}
« no previous file with comments | « components/components_tests.gyp ('k') | components/suggestions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698