Commit 8b7e37e4 authored by tfarina@chromium.org's avatar tfarina@chromium.org

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
parent c9eb3a1a
...@@ -18,6 +18,7 @@ group("all_components") { ...@@ -18,6 +18,7 @@ group("all_components") {
"//components/bookmarks/test", "//components/bookmarks/test",
"//components/captive_portal", "//components/captive_portal",
"//components/cloud_devices/common", "//components/cloud_devices/common",
"//components/component_updater",
"//components/data_reduction_proxy/browser", "//components/data_reduction_proxy/browser",
"//components/data_reduction_proxy/common", "//components/data_reduction_proxy/common",
"//components/dom_distiller/core", "//components/dom_distiller/core",
...@@ -70,6 +71,7 @@ group("all_components") { ...@@ -70,6 +71,7 @@ group("all_components") {
"//components/url_fixer", "//components/url_fixer",
"//components/url_matcher", "//components/url_matcher",
"//components/usb_service", "//components/usb_service",
"//components/user_manager",
"//components/user_prefs", "//components/user_prefs",
"//components/variations", "//components/variations",
"//components/visitedlink/browser", "//components/visitedlink/browser",
......
# 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",
]
}
# 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.
component("user_manager") {
sources = [
"empty_user_info.cc",
"empty_user_info.h",
"user_info.cc",
"user_info.h",
"user_info_impl.cc",
"user_info_impl.h",
"user_manager_export.h",
]
if (is_chromeos) {
sources += [
"user_image/user_image.cc",
"user_image/user_image.h",
"user_type.h",
]
}
defines = [
"USER_MANAGER_IMPLEMENTATION",
]
deps = [
"//base",
"//skia",
"//ui/gfx",
"//url",
]
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment