| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "//device/hid", | 90 "//device/hid", |
| 91 "//mash/public/interfaces", | 91 "//mash/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 "//components/sync", |
| 100 "//printing", | 101 "//printing", |
| 101 "//skia", | 102 "//skia", |
| 102 "//storage/browser", | 103 "//storage/browser", |
| 103 "//storage/common", | 104 "//storage/common", |
| 104 "//sync", | |
| 105 "//third_party/adobe/flash:flapper_version_h", | 105 "//third_party/adobe/flash:flapper_version_h", |
| 106 "//third_party/cacheinvalidation", | 106 "//third_party/cacheinvalidation", |
| 107 "//third_party/icu", | 107 "//third_party/icu", |
| 108 "//third_party/leveldatabase", | 108 "//third_party/leveldatabase", |
| 109 "//third_party/libjingle", | 109 "//third_party/libjingle", |
| 110 "//third_party/libusb", | 110 "//third_party/libusb", |
| 111 "//third_party/protobuf:protobuf_lite", | 111 "//third_party/protobuf:protobuf_lite", |
| 112 "//third_party/protobuf:protoc($host_toolchain)", | 112 "//third_party/protobuf:protoc($host_toolchain)", |
| 113 "//third_party/re2", | 113 "//third_party/re2", |
| 114 "//third_party/zlib", | 114 "//third_party/zlib", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 ] | 191 ] |
| 192 deps = [ | 192 deps = [ |
| 193 ":attestation_proto", | 193 ":attestation_proto", |
| 194 ":device_policy_proto", | 194 ":device_policy_proto", |
| 195 "//ash/resources", | 195 "//ash/resources", |
| 196 "//components/drive", | 196 "//components/drive", |
| 197 "//components/drive:test_support_chromeos", | 197 "//components/drive:test_support_chromeos", |
| 198 "//components/invalidation/public", | 198 "//components/invalidation/public", |
| 199 "//components/policy", | 199 "//components/policy", |
| 200 "//components/resources", | 200 "//components/resources", |
| 201 "//components/sync", |
| 201 "//crypto:platform", | 202 "//crypto:platform", |
| 202 "//dbus", | 203 "//dbus", |
| 203 "//mojo/public/cpp/system:system", | 204 "//mojo/public/cpp/system:system", |
| 204 "//skia", | 205 "//skia", |
| 205 "//sync", | |
| 206 "//testing/gmock", | 206 "//testing/gmock", |
| 207 "//testing/gtest", | 207 "//testing/gtest", |
| 208 "//third_party/icu", | 208 "//third_party/icu", |
| 209 "//third_party/leveldatabase", | 209 "//third_party/leveldatabase", |
| 210 "//ui/chromeos/resources", | 210 "//ui/chromeos/resources", |
| 211 ] | 211 ] |
| 212 data = [ | 212 data = [ |
| 213 "//chromeos/test/data/", | 213 "//chromeos/test/data/", |
| 214 ] | 214 ] |
| 215 } | 215 } |
| 216 | 216 |
| 217 proto_library("device_policy_proto") { | 217 proto_library("device_policy_proto") { |
| 218 sources = [ | 218 sources = [ |
| 219 "policy/proto/chrome_device_policy.proto", | 219 "policy/proto/chrome_device_policy.proto", |
| 220 "policy/proto/install_attributes.proto", | 220 "policy/proto/install_attributes.proto", |
| 221 ] | 221 ] |
| 222 } | 222 } |
| 223 | 223 |
| 224 proto_library("attestation_proto") { | 224 proto_library("attestation_proto") { |
| 225 sources = [ | 225 sources = [ |
| 226 "attestation/attestation_key_payload.proto", | 226 "attestation/attestation_key_payload.proto", |
| 227 "attestation/attestation_signed_data.proto", | 227 "attestation/attestation_signed_data.proto", |
| 228 ] | 228 ] |
| 229 } | 229 } |
| OLD | NEW |