| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//chrome/installer/util", | 62 "//chrome/installer/util", |
| 63 "//chromeos", | 63 "//chromeos", |
| 64 "//chromeos/ime:gencode", | 64 "//chromeos/ime:gencode", |
| 65 "//chromeos:cryptohome_proto", | 65 "//chromeos:cryptohome_proto", |
| 66 "//chromeos:cryptohome_signkey_proto", | 66 "//chromeos:cryptohome_signkey_proto", |
| 67 "//chromeos:power_manager_proto", | 67 "//chromeos:power_manager_proto", |
| 68 "//components/onc", | 68 "//components/onc", |
| 69 "//components/ownership", | 69 "//components/ownership", |
| 70 "//components/pairing", | 70 "//components/pairing", |
| 71 "//components/policy", | 71 "//components/policy", |
| 72 "//components/proxy_config", |
| 72 | 73 |
| 73 # This depends directly on the variations target, rather than just | 74 # This depends directly on the variations target, rather than just |
| 74 # transitively via the common target because the proto sources need to | 75 # transitively via the common target because the proto sources need to |
| 75 # be generated before code in this target can start building. | 76 # be generated before code in this target can start building. |
| 76 "//components/strings", | 77 "//components/strings", |
| 77 "//components/variations", | 78 "//components/variations", |
| 78 "//content/public/browser", | 79 "//content/public/browser", |
| 79 "//content/public/common", | 80 "//content/public/common", |
| 80 "//crypto", | 81 "//crypto", |
| 81 "//dbus", | 82 "//dbus", |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "policy/proto/install_attributes.proto", | 197 "policy/proto/install_attributes.proto", |
| 197 ] | 198 ] |
| 198 } | 199 } |
| 199 | 200 |
| 200 proto_library("attestation_proto") { | 201 proto_library("attestation_proto") { |
| 201 sources = [ | 202 sources = [ |
| 202 "attestation/attestation_key_payload.proto", | 203 "attestation/attestation_key_payload.proto", |
| 203 "attestation/attestation_signed_data.proto", | 204 "attestation/attestation_signed_data.proto", |
| 204 ] | 205 ] |
| 205 } | 206 } |
| OLD | NEW |