| 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 assert(is_chromeos) | 10 assert(is_chromeos) |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//components/flags_ui", | 62 "//components/flags_ui", |
| 63 "//components/login", | 63 "//components/login", |
| 64 "//components/metrics/leak_detector", | 64 "//components/metrics/leak_detector", |
| 65 "//components/onc", | 65 "//components/onc", |
| 66 "//components/ownership", | 66 "//components/ownership", |
| 67 "//components/pairing", | 67 "//components/pairing", |
| 68 "//components/policy:generated", | 68 "//components/policy:generated", |
| 69 "//components/proxy_config", | 69 "//components/proxy_config", |
| 70 "//components/safe_browsing_db:metadata_proto", | 70 "//components/safe_browsing_db:metadata_proto", |
| 71 "//components/session_manager/core", | 71 "//components/session_manager/core", |
| 72 "//components/sync_wifi", |
| 72 "//components/user_manager", | 73 "//components/user_manager", |
| 73 "//components/wifi_sync", | |
| 74 | 74 |
| 75 # This depends directly on the variations target, rather than just | 75 # This depends directly on the variations target, rather than just |
| 76 # transitively via the common target because the proto sources need to | 76 # transitively via the common target because the proto sources need to |
| 77 # be generated before code in this target can start building. | 77 # be generated before code in this target can start building. |
| 78 "//components/resources", | 78 "//components/resources", |
| 79 "//components/strings", | 79 "//components/strings", |
| 80 "//components/variations", | 80 "//components/variations", |
| 81 "//content/public/browser", | 81 "//content/public/browser", |
| 82 "//content/public/common", | 82 "//content/public/common", |
| 83 "//crypto", | 83 "//crypto", |
| (...skipping 1529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1613 "policy/proto/chrome_device_policy.proto", | 1613 "policy/proto/chrome_device_policy.proto", |
| 1614 "policy/proto/install_attributes.proto", | 1614 "policy/proto/install_attributes.proto", |
| 1615 ] | 1615 ] |
| 1616 } | 1616 } |
| 1617 | 1617 |
| 1618 proto_library("attestation_proto") { | 1618 proto_library("attestation_proto") { |
| 1619 sources = [ | 1619 sources = [ |
| 1620 "attestation/attestation_key_payload.proto", | 1620 "attestation/attestation_key_payload.proto", |
| 1621 ] | 1621 ] |
| 1622 } | 1622 } |
| OLD | NEW |