diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 16:40:00 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-10 16:40:00 +0000 |
commit | 8a3036fb8a891b9d8104fd0fadee418d9bca3681 (patch) | |
tree | afd5cfd6b15d1c7d1b9c0fc1e1a2d43204cad8f3 /components/feedback | |
parent | 4ea89390a99623454b64a89b806586175adaaab1 (diff) | |
download | chromium_src-8a3036fb8a891b9d8104fd0fadee418d9bca3681.zip chromium_src-8a3036fb8a891b9d8104fd0fadee418d9bca3681.tar.gz chromium_src-8a3036fb8a891b9d8104fd0fadee418d9bca3681.tar.bz2 |
Add chrome/browser/ui to the GN build.
This moves the intermediate grit files:
ui/ui_resources -> ui/resources
ui/ui_strings -> ui/strings
in the GYP build to put it in line with the GN one (and also what one would expect).
R=ajwong@chromium.org
Review URL: https://codereview.chromium.org/381463002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282355 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/feedback')
-rw-r--r-- | components/feedback/BUILD.gn | 37 | ||||
-rw-r--r-- | components/feedback/proto/BUILD.gn | 18 |
2 files changed, 55 insertions, 0 deletions
diff --git a/components/feedback/BUILD.gn b/components/feedback/BUILD.gn new file mode 100644 index 0000000..aa8c864 --- /dev/null +++ b/components/feedback/BUILD.gn @@ -0,0 +1,37 @@ +# 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. + +static_library("feedback") { + sources = [ + "feedback_common.cc", + "feedback_common.h", + "feedback_data.cc", + "feedback_data.h", + "feedback_report.cc", + "feedback_report.h", + "feedback_switches.cc", + "feedback_switches.h", + "feedback_uploader.cc", + "feedback_uploader.h", + "feedback_uploader_chrome.cc", + "feedback_uploader_chrome.h", + "feedback_uploader_delegate.cc", + "feedback_uploader_delegate.h", + "feedback_uploader_factory.cc", + "feedback_uploader_factory.h", + "feedback_util.cc", + "feedback_util.h", + "tracing_manager.cc", + "tracing_manager.h", + ] + + deps = [ + "//base", + "//components/keyed_service/core:core", + "//components/feedback/proto", + "//content/public/common", + "//net", + "//third_party/zlib:zip", + ] +} diff --git a/components/feedback/proto/BUILD.gn b/components/feedback/proto/BUILD.gn new file mode 100644 index 0000000..15da2c0 --- /dev/null +++ b/components/feedback/proto/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. + +import("//third_party/protobuf/proto_library.gni") + +# GYP version: components/feedback.gypi:feedback_proto +proto_library("proto") { + sources = [ + "annotations.proto", + "chrome.proto", + "common.proto", + "dom.proto", + "extension.proto", + "math.proto", + "web.proto", + ] +} |