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

Unified Diff: components/component_updater.gypi

Issue 334783002: Componentize component_updater: Move some paths/constants to component. (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/component_updater.gypi
diff --git a/components/component_updater.gypi b/components/component_updater.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..46eb39d09b0943d313c8e8a264e843afe44a6e3c
--- /dev/null
+++ b/components/component_updater.gypi
@@ -0,0 +1,28 @@
+# Copyright 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': [
+ {
+ 'target_name': 'component_updater',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'component_updater/browser/component_updater_switches.cc',
Sorin Jianu 2014/06/30 22:27:53 That is another the part I am not certain about. D
tommycli 2014/07/01 00:03:04 Done.
+ 'component_updater/browser/component_updater_switches.h',
+ 'component_updater/common/component_updater_constants.cc',
+ 'component_updater/common/component_updater_constants.h',
+ 'component_updater/common/component_updater_paths.cc',
+ 'component_updater/common/component_updater_paths.h',
+ 'component_updater/common/pref_names.cc',
+ 'component_updater/common/pref_names.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698