| 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, "Non-ChromeOS builds must not depend on //chromeos") |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "//chromeos/ime:gencode", | 27 "//chromeos/ime:gencode", |
| 28 "//components/policy/proto", | 28 "//components/policy/proto", |
| 29 "//components/onc", | 29 "//components/onc", |
| 30 "//crypto", | 30 "//crypto", |
| 31 "//crypto:platform", | 31 "//crypto:platform", |
| 32 "//google_apis", | 32 "//google_apis", |
| 33 "//net/third_party/nss/ssl:libssl", | 33 "//net/third_party/nss/ssl:libssl", |
| 34 "//third_party/icu", | 34 "//third_party/icu", |
| 35 "//third_party/libxml", | 35 "//third_party/libxml", |
| 36 "//third_party/protobuf:protobuf_lite", | 36 "//third_party/protobuf:protobuf_lite", |
| 37 "//ui/gfx/geometry", | |
| 38 "//url", | 37 "//url", |
| 39 ":cryptohome_proto", | 38 ":cryptohome_proto", |
| 40 ":power_manager_proto", | 39 ":power_manager_proto", |
| 41 ] | 40 ] |
| 42 sources = gypi_values.chromeos_sources | 41 sources = gypi_values.chromeos_sources |
| 43 defines = [ "CHROMEOS_IMPLEMENTATION" ] | 42 defines = [ "CHROMEOS_IMPLEMENTATION" ] |
| 44 } | 43 } |
| 45 | 44 |
| 46 static_library("test_support") { | 45 static_library("test_support") { |
| 47 testonly = true | 46 testonly = true |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 proto_out_dir = "chromeos/dbus/cryptohome" | 169 proto_out_dir = "chromeos/dbus/cryptohome" |
| 171 } | 170 } |
| 172 | 171 |
| 173 proto_library("cryptohome_signkey_proto") { | 172 proto_library("cryptohome_signkey_proto") { |
| 174 sources = [ | 173 sources = [ |
| 175 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 174 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 176 ] | 175 ] |
| 177 | 176 |
| 178 proto_out_dir = "chromeos/cryptohome" | 177 proto_out_dir = "chromeos/cryptohome" |
| 179 } | 178 } |
| OLD | NEW |