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

Side by Side Diff: chrome/browser/chromeos/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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/change_list_processor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//chrome/chrome_tests.gni") 7 import("//chrome/chrome_tests.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//third_party/protobuf/proto_library.gni") 9 import("//third_party/protobuf/proto_library.gni")
10 10
(...skipping 23 matching lines...) Expand all
34 "//ui/chromeos/resources", 34 "//ui/chromeos/resources",
35 "//ui/chromeos/strings", 35 "//ui/chromeos/strings",
36 "//ui/resources", 36 "//ui/resources",
37 "//ui/strings", 37 "//ui/strings",
38 ] 38 ]
39 39
40 deps = [ 40 deps = [
41 # TODO(tbarzic): Cleanup this list. 41 # TODO(tbarzic): Cleanup this list.
42 ":attestation_proto", 42 ":attestation_proto",
43 ":device_policy_proto", 43 ":device_policy_proto",
44 ":drive_proto",
45 "//ash", 44 "//ash",
46 "//ash:ash_with_content", 45 "//ash:ash_with_content",
46 "//components/drive",
47 "//components/login", 47 "//components/login",
48 "//components/session_manager/core", 48 "//components/session_manager/core",
49 "//components/user_manager", 49 "//components/user_manager",
50 "//components/wifi_sync", 50 "//components/wifi_sync",
51 "//chrome/browser/devtools", 51 "//chrome/browser/devtools",
52 "//chrome/browser/extensions", 52 "//chrome/browser/extensions",
53 "//chrome/browser/net:encrypted_cert_logger_proto", 53 "//chrome/browser/net:encrypted_cert_logger_proto",
54 "//chrome/browser/safe_browsing:chunk_proto", 54 "//chrome/browser/safe_browsing:chunk_proto",
55 "//chrome/browser/safe_browsing:metadata_proto", 55 "//chrome/browser/safe_browsing:metadata_proto",
56 "//chrome/browser/safe_browsing:report_proto", 56 "//chrome/browser/safe_browsing:report_proto",
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 chrome_tests_unit_gypi_values.chrome_unit_tests_chromeos_sources, 167 chrome_tests_unit_gypi_values.chrome_unit_tests_chromeos_sources,
168 ".", 168 ".",
169 "//chrome") 169 "//chrome")
170 170
171 public_deps = [ 171 public_deps = [
172 ":chromeos", 172 ":chromeos",
173 ] 173 ]
174 deps = [ 174 deps = [
175 ":attestation_proto", 175 ":attestation_proto",
176 ":device_policy_proto", 176 ":device_policy_proto",
177 ":drive_proto",
178 "//ash/resources", 177 "//ash/resources",
178 "//components/drive",
179 "//components/policy", 179 "//components/policy",
180 "//components/invalidation/public", 180 "//components/invalidation/public",
181 "//crypto:platform", 181 "//crypto:platform",
182 "//dbus", 182 "//dbus",
183 "//skia", 183 "//skia",
184 "//sync", 184 "//sync",
185 "//testing/gmock", 185 "//testing/gmock",
186 "//testing/gtest", 186 "//testing/gtest",
187 "//third_party/leveldatabase", 187 "//third_party/leveldatabase",
188 "//third_party/mojo/src/mojo/public/cpp/system:system", 188 "//third_party/mojo/src/mojo/public/cpp/system:system",
189 "//ui/chromeos/resources", 189 "//ui/chromeos/resources",
190 ] 190 ]
191 } 191 }
192 192
193 proto_library("drive_proto") {
194 sources = [
195 "drive/drive.proto",
196 ]
197 }
198
199 proto_library("device_policy_proto") { 193 proto_library("device_policy_proto") {
200 sources = [ 194 sources = [
201 "policy/proto/chrome_device_policy.proto", 195 "policy/proto/chrome_device_policy.proto",
202 "policy/proto/install_attributes.proto", 196 "policy/proto/install_attributes.proto",
203 ] 197 ]
204 } 198 }
205 199
206 proto_library("attestation_proto") { 200 proto_library("attestation_proto") {
207 sources = [ 201 sources = [
208 "attestation/attestation_key_payload.proto", 202 "attestation/attestation_key_payload.proto",
209 "attestation/attestation_signed_data.proto", 203 "attestation/attestation_signed_data.proto",
210 ] 204 ]
211 } 205 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/change_list_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698