| 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("//components/nacl/nacl_defines.gni") | 7 import("//components/nacl/nacl_defines.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 24 matching lines...) Expand all Loading... |
| 35 "//ui/chromeos/strings", | 35 "//ui/chromeos/strings", |
| 36 "//ui/resources", | 36 "//ui/resources", |
| 37 "//ui/strings", | 37 "//ui/strings", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 # TODO(tbarzic): Cleanup this list. | 41 # TODO(tbarzic): Cleanup this list. |
| 42 "//ash", | 42 "//ash", |
| 43 "//ash:ash_with_content", | 43 "//ash:ash_with_content", |
| 44 "//breakpad:client", | 44 "//breakpad:client", |
| 45 "//components/login", |
| 45 "//components/session_manager/core", | 46 "//components/session_manager/core", |
| 46 "//components/user_manager", | 47 "//components/user_manager", |
| 47 "//chrome/browser/devtools", | 48 "//chrome/browser/devtools", |
| 48 "//chrome/browser/extensions", | 49 "//chrome/browser/extensions", |
| 49 "//chrome/browser/history:in_memory_url_index_cache_proto", | 50 "//chrome/browser/history:in_memory_url_index_cache_proto", |
| 50 "//chrome/browser/net:cert_logger_proto", | 51 "//chrome/browser/net:cert_logger_proto", |
| 51 "//chrome/browser/safe_browsing:chunk_proto", | 52 "//chrome/browser/safe_browsing:chunk_proto", |
| 52 "//chrome/browser/safe_browsing:metadata_proto", | 53 "//chrome/browser/safe_browsing:metadata_proto", |
| 53 "//chrome/browser/safe_browsing:report_proto", | 54 "//chrome/browser/safe_browsing:report_proto", |
| 54 "//chrome/common", | 55 "//chrome/common", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "policy/proto/install_attributes.proto", | 165 "policy/proto/install_attributes.proto", |
| 165 ] | 166 ] |
| 166 } | 167 } |
| 167 | 168 |
| 168 proto_library("attestation_proto") { | 169 proto_library("attestation_proto") { |
| 169 sources = [ | 170 sources = [ |
| 170 "attestation/attestation_key_payload.proto", | 171 "attestation/attestation_key_payload.proto", |
| 171 "attestation/attestation_signed_data.proto", | 172 "attestation/attestation_signed_data.proto", |
| 172 ] | 173 ] |
| 173 } | 174 } |
| OLD | NEW |