| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/protobuf/proto_library.gni") | 7 import("//third_party/protobuf/proto_library.gni") |
| 8 | 8 |
| 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") | 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 deps = [ | 26 deps = [ |
| 27 ":attestation_proto", | 27 ":attestation_proto", |
| 28 ":cryptohome_proto", | 28 ":cryptohome_proto", |
| 29 ":power_manager_proto", | 29 ":power_manager_proto", |
| 30 "//base", | 30 "//base", |
| 31 "//base:i18n", | 31 "//base:i18n", |
| 32 "//base/third_party/dynamic_annotations", | 32 "//base/third_party/dynamic_annotations", |
| 33 "//components/device_event_log", | 33 "//components/device_event_log", |
| 34 "//components/onc", | 34 "//components/onc", |
| 35 "//components/policy/proto", | 35 "//components/policy/proto", |
| 36 "//components/pref_registry", |
| 36 "//components/prefs", | 37 "//components/prefs", |
| 37 "//components/proxy_config", | 38 "//components/proxy_config", |
| 38 "//components/signin/core/account_id", | 39 "//components/signin/core/account_id", |
| 39 "//components/user_manager", | 40 "//components/user_manager", |
| 40 "//crypto", | 41 "//crypto", |
| 41 "//crypto:platform", | 42 "//crypto:platform", |
| 42 "//google_apis", | 43 "//google_apis", |
| 43 "//net", | 44 "//net", |
| 45 "//skia", # For components/user_manager |
| 44 "//third_party/icu", | 46 "//third_party/icu", |
| 45 "//third_party/libxml", | 47 "//third_party/libxml", |
| 46 "//third_party/protobuf:protobuf_lite", | 48 "//third_party/protobuf:protobuf_lite", |
| 47 "//url", | 49 "//url", |
| 48 ] | 50 ] |
| 49 sources = gypi_values.chromeos_sources | 51 sources = gypi_values.chromeos_sources |
| 50 defines = [ "CHROMEOS_IMPLEMENTATION" ] | 52 defines = [ "CHROMEOS_IMPLEMENTATION" ] |
| 51 if (current_cpu == "arm" || current_cpu == "x86") { | 53 if (current_cpu == "arm" || current_cpu == "x86") { |
| 52 defines += [ "BINDER_IPC_32BIT" ] | 54 defines += [ "BINDER_IPC_32BIT" ] |
| 53 } | 55 } |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 proto_out_dir = "chromeos/attestation" | 215 proto_out_dir = "chromeos/attestation" |
| 214 } | 216 } |
| 215 | 217 |
| 216 proto_library("cryptohome_signkey_proto") { | 218 proto_library("cryptohome_signkey_proto") { |
| 217 sources = [ | 219 sources = [ |
| 218 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 220 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 219 ] | 221 ] |
| 220 | 222 |
| 221 proto_out_dir = "chromeos/cryptohome" | 223 proto_out_dir = "chromeos/cryptohome" |
| 222 } | 224 } |
| OLD | NEW |