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

Side by Side Diff: chromeos/BUILD.gn

Issue 643243003: Fixes device/bluetooth / chromeos dependencies for GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: public_deps Created 6 years, 2 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 | device/bluetooth/BUILD.gn » ('j') | device/bluetooth/BUILD.gn » ('J')
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("//third_party/protobuf/proto_library.gni") 7 import("//third_party/protobuf/proto_library.gni")
8 8
9 gypi_values = exec_script( 9 gypi_values = exec_script(
10 "//build/gypi_to_gn.py", 10 "//build/gypi_to_gn.py",
11 [ rebase_path("chromeos.gyp") ], 11 [ rebase_path("chromeos.gyp") ],
12 "scope", 12 "scope",
13 [ "chromeos.gyp" ]) 13 [ "chromeos.gyp" ])
14 14
15 component("chromeos") { 15 component("chromeos") {
16 configs += [ 16 configs += [
17 "//build/config/linux:dbus",
18 "//net/third_party/nss/ssl:ssl_config", 17 "//net/third_party/nss/ssl:ssl_config",
19 ] 18 ]
19 public_deps = [ "//dbus" ]
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//base:prefs", 22 "//base:prefs",
23 "//base/third_party/dynamic_annotations", 23 "//base/third_party/dynamic_annotations",
24 "//chromeos/ime:gencode", 24 "//chromeos/ime:gencode",
25 "//components/policy/proto", 25 "//components/policy/proto",
26 "//components/onc", 26 "//components/onc",
27 "//crypto", 27 "//crypto",
28 "//dbus",
29 "//google_apis", 28 "//google_apis",
30 "//net/third_party/nss/ssl:libssl", 29 "//net/third_party/nss/ssl:libssl",
31 "//third_party/icu", 30 "//third_party/icu",
32 "//third_party/libxml", 31 "//third_party/libxml",
33 "//third_party/protobuf:protobuf_lite", 32 "//third_party/protobuf:protobuf_lite",
34 "//ui/accelerometer", 33 "//ui/accelerometer",
35 "//url", 34 "//url",
36 ":cryptohome_proto", 35 ":cryptohome_proto",
37 ":power_manager_proto" 36 ":power_manager_proto"
38 ] 37 ]
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 proto_out_dir = "chromeos/dbus/cryptohome" 183 proto_out_dir = "chromeos/dbus/cryptohome"
185 } 184 }
186 185
187 proto_library("cryptohome_signkey_proto") { 186 proto_library("cryptohome_signkey_proto") {
188 sources = [ 187 sources = [
189 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 188 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
190 ] 189 ]
191 190
192 proto_out_dir = "chromeos/cryptohome" 191 proto_out_dir = "chromeos/cryptohome"
193 } 192 }
OLDNEW
« no previous file with comments | « no previous file | device/bluetooth/BUILD.gn » ('j') | device/bluetooth/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698