| 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 25 matching lines...) Expand all Loading... |
| 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 ":attestation_proto", | 42 ":attestation_proto", |
| 43 ":device_policy_proto", | 43 ":device_policy_proto", |
| 44 "//ash", | 44 "//ash", |
| 45 "//ash:ash_with_content", | 45 "//ash:ash_with_content", |
| 46 "//ash/public/interfaces", |
| 46 "//build/linux:fontconfig", | 47 "//build/linux:fontconfig", |
| 47 "//chrome/browser/devtools", | 48 "//chrome/browser/devtools", |
| 48 "//chrome/browser/extensions", | 49 "//chrome/browser/extensions", |
| 49 "//chrome/browser/safe_browsing:chunk_proto", | 50 "//chrome/browser/safe_browsing:chunk_proto", |
| 50 "//chrome/common", | 51 "//chrome/common", |
| 51 "//chrome/common/extensions/api", | 52 "//chrome/common/extensions/api", |
| 52 "//chrome/common/extensions/api:api_registration", | 53 "//chrome/common/extensions/api:api_registration", |
| 53 "//chrome/common/net", | 54 "//chrome/common/net", |
| 54 "//chrome/common/safe_browsing:proto", | 55 "//chrome/common/safe_browsing:proto", |
| 55 "//chrome/installer/util:with_no_strings", | 56 "//chrome/installer/util:with_no_strings", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 81 "//components/resources", | 82 "//components/resources", |
| 82 "//components/strings", | 83 "//components/strings", |
| 83 "//components/variations", | 84 "//components/variations", |
| 84 "//content/public/browser", | 85 "//content/public/browser", |
| 85 "//content/public/common", | 86 "//content/public/common", |
| 86 "//crypto", | 87 "//crypto", |
| 87 "//dbus", | 88 "//dbus", |
| 88 "//device/bluetooth", | 89 "//device/bluetooth", |
| 89 "//device/hid", | 90 "//device/hid", |
| 90 "//mash/public/interfaces", | 91 "//mash/public/interfaces", |
| 91 "//mash/wm/public/interfaces", | |
| 92 "//media", | 92 "//media", |
| 93 "//media/mojo/interfaces", | 93 "//media/mojo/interfaces", |
| 94 "//mojo/common", | 94 "//mojo/common", |
| 95 "//net", | 95 "//net", |
| 96 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin | 96 "//ppapi/proxy:ipc", # For PpapiMsg_LoadPlugin |
| 97 "//services/shell/public/cpp", | 97 "//services/shell/public/cpp", |
| 98 | 98 |
| 99 # TODO: care about enable_basic_printing and enable_print_preview. | 99 # TODO: care about enable_basic_printing and enable_print_preview. |
| 100 "//printing", | 100 "//printing", |
| 101 "//skia", | 101 "//skia", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 "policy/proto/install_attributes.proto", | 218 "policy/proto/install_attributes.proto", |
| 219 ] | 219 ] |
| 220 } | 220 } |
| 221 | 221 |
| 222 proto_library("attestation_proto") { | 222 proto_library("attestation_proto") { |
| 223 sources = [ | 223 sources = [ |
| 224 "attestation/attestation_key_payload.proto", | 224 "attestation/attestation_key_payload.proto", |
| 225 "attestation/attestation_signed_data.proto", | 225 "attestation/attestation_signed_data.proto", |
| 226 ] | 226 ] |
| 227 } | 227 } |
| OLD | NEW |