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

Unified Diff: components/rlz.gypi

Issue 1212163011: Componentize chrome/browser/rlz (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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/rlz/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/rlz.gypi
diff --git a/components/rlz.gypi b/components/rlz.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..9030258d66f072a2c0ce1bfe30815510337e0c01
--- /dev/null
+++ b/components/rlz.gypi
@@ -0,0 +1,38 @@
+# Copyright 2015 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/rlz
+ 'target_name': 'rlz',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../net/net.gyp:net',
+ '../rlz/rlz.gyp:rlz_lib',
+ 'google_core_browser',
+ ],
+ 'sources': [
+ 'rlz/rlz_tracker.cc',
+ 'rlz/rlz_tracker.h',
+ 'rlz/rlz_tracker_chromeos.cc',
+ 'rlz/rlz_tracker_delegate.h',
+ 'rlz/rlz_tracker_ios.cc',
+ 'rlz/rlz_tracker_mac.cc',
+ 'rlz/rlz_tracker_win.cc',
+ ],
+ 'conditions': [
+ ['OS == "ios"', {
+ 'dependencies': [
+ '../ui/base/ui_base.gyp:ui_base',
+ ],
+ }],
+ ],
+ },
+ ],
+}
« no previous file with comments | « components/components_tests.gyp ('k') | components/rlz/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698