summaryrefslogtreecommitdiffstats
path: root/components/component_updater/BUILD.gn
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-22 00:36:20 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-22 00:36:20 +0000
commit8b7e37e4ddf9c62eb5e3f01e5d68ab2a77abe091 (patch)
treed97948102ddff12832cd3f49a8eb2554fbeb39ba /components/component_updater/BUILD.gn
parentc9eb3a1ad209e99a8ffa6876352a5b2d3d201d7c (diff)
downloadchromium_src-8b7e37e4ddf9c62eb5e3f01e5d68ab2a77abe091.zip
chromium_src-8b7e37e4ddf9c62eb5e3f01e5d68ab2a77abe091.tar.gz
chromium_src-8b7e37e4ddf9c62eb5e3f01e5d68ab2a77abe091.tar.bz2
components: Add GN Build files for component_updater and user_manager.
BUG=None TEST=gn gen out/Debug_gn && ninja -C out/Debug_gn component_updater user_manager R=brettw@chromium.org TBR=jochen@chromium.org Review URL: https://codereview.chromium.org/403103005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284560 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/component_updater/BUILD.gn')
-rw-r--r--components/component_updater/BUILD.gn18
1 files changed, 18 insertions, 0 deletions
diff --git a/components/component_updater/BUILD.gn b/components/component_updater/BUILD.gn
new file mode 100644
index 0000000..500349b
--- /dev/null
+++ b/components/component_updater/BUILD.gn
@@ -0,0 +1,18 @@
+# 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.
+
+source_set("component_updater") {
+ sources = [
+ "component_updater_paths.cc",
+ "component_updater_paths.h",
+ "component_updater_switches.cc",
+ "component_updater_switches.h",
+ "pref_names.cc",
+ "pref_names.h",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}