| 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("//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_ui, "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", |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 proto_out_dir = "chromeos/dbus/cryptohome" | 172 proto_out_dir = "chromeos/dbus/cryptohome" |
| 173 } | 173 } |
| 174 | 174 |
| 175 proto_library("cryptohome_signkey_proto") { | 175 proto_library("cryptohome_signkey_proto") { |
| 176 sources = [ | 176 sources = [ |
| 177 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 177 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 178 ] | 178 ] |
| 179 | 179 |
| 180 proto_out_dir = "chromeos/cryptohome" | 180 proto_out_dir = "chromeos/cryptohome" |
| 181 } | 181 } |
| OLD | NEW |