| 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("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "//chrome/common", | 54 "//chrome/common", |
| 55 "//chrome/common/extensions/api", | 55 "//chrome/common/extensions/api", |
| 56 "//chrome/common/extensions/api:api_registration", | 56 "//chrome/common/extensions/api:api_registration", |
| 57 "//chrome/common/net", | 57 "//chrome/common/net", |
| 58 "//chrome/installer/util", | 58 "//chrome/installer/util", |
| 59 "//chromeos", | 59 "//chromeos", |
| 60 "//chromeos/ime:gencode", | 60 "//chromeos/ime:gencode", |
| 61 "//chromeos:cryptohome_proto", | 61 "//chromeos:cryptohome_proto", |
| 62 "//chromeos:cryptohome_signkey_proto", | 62 "//chromeos:cryptohome_signkey_proto", |
| 63 "//chromeos:power_manager_proto", | 63 "//chromeos:power_manager_proto", |
| 64 "//components/history/core/browser:proto", | |
| 65 "//components/onc", | 64 "//components/onc", |
| 66 "//components/ownership", | 65 "//components/ownership", |
| 67 "//components/pairing", | 66 "//components/pairing", |
| 68 "//components/policy", | 67 "//components/policy", |
| 69 | 68 |
| 70 # This depends directly on the variations target, rather than just | 69 # This depends directly on the variations target, rather than just |
| 71 # transitively via the common target because the proto sources need to | 70 # transitively via the common target because the proto sources need to |
| 72 # be generated before code in this target can start building. | 71 # be generated before code in this target can start building. |
| 73 "//components/strings", | 72 "//components/strings", |
| 74 "//components/variations", | 73 "//components/variations", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "policy/proto/install_attributes.proto", | 173 "policy/proto/install_attributes.proto", |
| 175 ] | 174 ] |
| 176 } | 175 } |
| 177 | 176 |
| 178 proto_library("attestation_proto") { | 177 proto_library("attestation_proto") { |
| 179 sources = [ | 178 sources = [ |
| 180 "attestation/attestation_key_payload.proto", | 179 "attestation/attestation_key_payload.proto", |
| 181 "attestation/attestation_signed_data.proto", | 180 "attestation/attestation_signed_data.proto", |
| 182 ] | 181 ] |
| 183 } | 182 } |
| OLD | NEW |