| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |