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

Side by Side Diff: chromeos/BUILD.gn

Issue 919183002: Move chromeos::device_event_log into components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Shut down in PostDestroyThreads. Created 5 years, 10 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 | « chrome/common/url_constants.cc ('k') | chromeos/DEPS » ('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/allocator.gni") 5 import("//build/config/allocator.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//third_party/protobuf/proto_library.gni") 8 import("//third_party/protobuf/proto_library.gni")
9 9
10 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") 10 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos")
11 11
12 gypi_values = exec_script("//build/gypi_to_gn.py", 12 gypi_values = exec_script("//build/gypi_to_gn.py",
13 [ rebase_path("chromeos.gyp") ], 13 [ rebase_path("chromeos.gyp") ],
14 "scope", 14 "scope",
15 [ "chromeos.gyp" ]) 15 [ "chromeos.gyp" ])
16 16
17 component("chromeos") { 17 component("chromeos") {
18 configs += [ "//net/third_party/nss/ssl:ssl_config" ] 18 configs += [ "//net/third_party/nss/ssl:ssl_config" ]
19 public_deps = [ 19 public_deps = [
20 "//dbus", 20 "//dbus",
21 ] 21 ]
22 deps = [ 22 deps = [
23 "//base", 23 "//base",
24 "//base:i18n", 24 "//base:i18n",
25 "//base:prefs", 25 "//base:prefs",
26 "//base/third_party/dynamic_annotations", 26 "//base/third_party/dynamic_annotations",
27 "//chromeos/ime:gencode", 27 "//chromeos/ime:gencode",
28 "//components/device_event_log",
28 "//components/policy/proto", 29 "//components/policy/proto",
29 "//components/onc", 30 "//components/onc",
30 "//crypto", 31 "//crypto",
31 "//crypto:platform", 32 "//crypto:platform",
32 "//google_apis", 33 "//google_apis",
33 "//net/third_party/nss/ssl:libssl", 34 "//net/third_party/nss/ssl:libssl",
34 "//third_party/icu", 35 "//third_party/icu",
35 "//third_party/libxml", 36 "//third_party/libxml",
36 "//third_party/protobuf:protobuf_lite", 37 "//third_party/protobuf:protobuf_lite",
37 "//url", 38 "//url",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 proto_out_dir = "chromeos/dbus/cryptohome" 170 proto_out_dir = "chromeos/dbus/cryptohome"
170 } 171 }
171 172
172 proto_library("cryptohome_signkey_proto") { 173 proto_library("cryptohome_signkey_proto") {
173 sources = [ 174 sources = [
174 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 175 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
175 ] 176 ]
176 177
177 proto_out_dir = "chromeos/cryptohome" 178 proto_out_dir = "chromeos/cryptohome"
178 } 179 }
OLDNEW
« no previous file with comments | « chrome/common/url_constants.cc ('k') | chromeos/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698