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

Unified Diff: components/drive/BUILD.gn

Issue 1243853002: Move chrome/browser/chromeos/drive/drive.proto into components/drive (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/drive.gypi ('k') | components/drive/drive.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/drive/BUILD.gn
diff --git a/components/drive/BUILD.gn b/components/drive/BUILD.gn
index 64f314181703791f3d60bdc6ce0e46448c2a86cf..f3f91c46b30e81f7c5aef7100a67dea762286f9e 100644
--- a/components/drive/BUILD.gn
+++ b/components/drive/BUILD.gn
@@ -2,6 +2,8 @@
# 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")
+
source_set("drive") {
sources = [
"drive_api_util.cc",
@@ -36,6 +38,16 @@ source_set("drive") {
"//third_party/re2:re2",
]
+ public_deps = [
+ ":proto",
+ ]
+}
+
+proto_library("proto") {
+ visibility = [ ":drive" ]
+ sources = [
+ "drive.proto",
+ ]
}
source_set("test_support") {
« no previous file with comments | « components/drive.gypi ('k') | components/drive/drive.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698