| 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 "//dbus", | 202 "//dbus", |
| 203 "//mojo/public/cpp/system:system", | 203 "//mojo/public/cpp/system:system", |
| 204 "//skia", | 204 "//skia", |
| 205 "//sync", | 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 = [ |
| 213 "//chromeos/test/data/", |
| 214 ] |
| 212 } | 215 } |
| 213 | 216 |
| 214 proto_library("device_policy_proto") { | 217 proto_library("device_policy_proto") { |
| 215 sources = [ | 218 sources = [ |
| 216 "policy/proto/chrome_device_policy.proto", | 219 "policy/proto/chrome_device_policy.proto", |
| 217 "policy/proto/install_attributes.proto", | 220 "policy/proto/install_attributes.proto", |
| 218 ] | 221 ] |
| 219 } | 222 } |
| 220 | 223 |
| 221 proto_library("attestation_proto") { | 224 proto_library("attestation_proto") { |
| 222 sources = [ | 225 sources = [ |
| 223 "attestation/attestation_key_payload.proto", | 226 "attestation/attestation_key_payload.proto", |
| 224 "attestation/attestation_signed_data.proto", | 227 "attestation/attestation_signed_data.proto", |
| 225 ] | 228 ] |
| 226 } | 229 } |
| OLD | NEW |