| 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 10 matching lines...) Expand all Loading... |
| 21 ] | 21 ] |
| 22 deps = [ | 22 deps = [ |
| 23 "//base", | 23 "//base", |
| 24 "//base:i18n", | 24 "//base:i18n", |
| 25 "//base:prefs", | 25 "//base:prefs", |
| 26 "//base/third_party/dynamic_annotations", | 26 "//base/third_party/dynamic_annotations", |
| 27 "//chromeos/ime:gencode", | 27 "//chromeos/ime:gencode", |
| 28 "//components/device_event_log", | 28 "//components/device_event_log", |
| 29 "//components/policy/proto", | 29 "//components/policy/proto", |
| 30 "//components/onc", | 30 "//components/onc", |
| 31 "//components/proxy_config", |
| 31 "//crypto", | 32 "//crypto", |
| 32 "//crypto:platform", | 33 "//crypto:platform", |
| 33 "//google_apis", | 34 "//google_apis", |
| 34 "//third_party/icu", | 35 "//third_party/icu", |
| 35 "//third_party/libxml", | 36 "//third_party/libxml", |
| 36 "//third_party/protobuf:protobuf_lite", | 37 "//third_party/protobuf:protobuf_lite", |
| 37 "//url", | 38 "//url", |
| 38 ":cryptohome_proto", | 39 ":cryptohome_proto", |
| 39 ":power_manager_proto", | 40 ":power_manager_proto", |
| 40 ] | 41 ] |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 test("chromeos_unittests") { | 125 test("chromeos_unittests") { |
| 125 configs += [ | 126 configs += [ |
| 126 "//build/config/linux:dbus", | 127 "//build/config/linux:dbus", |
| 127 "//net/third_party/nss/ssl:ssl_config", | 128 "//net/third_party/nss/ssl:ssl_config", |
| 128 ] | 129 ] |
| 129 deps = [ | 130 deps = [ |
| 130 "//base:prefs_test_support", | 131 "//base:prefs_test_support", |
| 131 "//base/test:run_all_unittests", | 132 "//base/test:run_all_unittests", |
| 132 "//base/test:test_support", | 133 "//base/test:test_support", |
| 133 "//components/onc", | 134 "//components/onc", |
| 135 "//components/proxy_config", |
| 134 "//crypto", | 136 "//crypto", |
| 135 "//crypto:test_support", | 137 "//crypto:test_support", |
| 136 "//dbus:test_support", | 138 "//dbus:test_support", |
| 137 "//google_apis", | 139 "//google_apis", |
| 138 "//net", | 140 "//net", |
| 139 "//net:test_support", | 141 "//net:test_support", |
| 140 "//testing/gmock", | 142 "//testing/gmock", |
| 141 "//testing/gtest", | 143 "//testing/gtest", |
| 142 "//third_party/icu", | 144 "//third_party/icu", |
| 143 "//url", | 145 "//url", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 172 proto_out_dir = "chromeos/dbus/cryptohome" | 174 proto_out_dir = "chromeos/dbus/cryptohome" |
| 173 } | 175 } |
| 174 | 176 |
| 175 proto_library("cryptohome_signkey_proto") { | 177 proto_library("cryptohome_signkey_proto") { |
| 176 sources = [ | 178 sources = [ |
| 177 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 179 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 178 ] | 180 ] |
| 179 | 181 |
| 180 proto_out_dir = "chromeos/cryptohome" | 182 proto_out_dir = "chromeos/cryptohome" |
| 181 } | 183 } |
| OLD | NEW |