| 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("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 1630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1641 deps = [ | 1641 deps = [ |
| 1642 ":attestation_proto", | 1642 ":attestation_proto", |
| 1643 ":device_policy_proto", | 1643 ":device_policy_proto", |
| 1644 "//ash/resources", | 1644 "//ash/resources", |
| 1645 "//components/drive", | 1645 "//components/drive", |
| 1646 "//components/drive:test_support_chromeos", | 1646 "//components/drive:test_support_chromeos", |
| 1647 "//components/invalidation/public", | 1647 "//components/invalidation/public", |
| 1648 "//components/policy:generated", | 1648 "//components/policy:generated", |
| 1649 "//components/resources", | 1649 "//components/resources", |
| 1650 "//components/sync", | 1650 "//components/sync", |
| 1651 "//components/variations:test_support", |
| 1651 "//crypto:platform", | 1652 "//crypto:platform", |
| 1652 "//dbus", | 1653 "//dbus", |
| 1653 "//mojo/public/cpp/system:system", | 1654 "//mojo/public/cpp/system:system", |
| 1654 "//skia", | 1655 "//skia", |
| 1655 "//testing/gmock", | 1656 "//testing/gmock", |
| 1656 "//testing/gtest", | 1657 "//testing/gtest", |
| 1657 "//third_party/icu", | 1658 "//third_party/icu", |
| 1658 "//third_party/leveldatabase", | 1659 "//third_party/leveldatabase", |
| 1659 "//ui/chromeos/resources", | 1660 "//ui/chromeos/resources", |
| 1660 ] | 1661 ] |
| 1661 data = [ | 1662 data = [ |
| 1662 "//chromeos/test/data/", | 1663 "//chromeos/test/data/", |
| 1663 ] | 1664 ] |
| 1664 } | 1665 } |
| 1665 | 1666 |
| 1666 proto_library("device_policy_proto") { | 1667 proto_library("device_policy_proto") { |
| 1667 sources = [ | 1668 sources = [ |
| 1668 "policy/proto/chrome_device_policy.proto", | 1669 "policy/proto/chrome_device_policy.proto", |
| 1669 "policy/proto/install_attributes.proto", | 1670 "policy/proto/install_attributes.proto", |
| 1670 ] | 1671 ] |
| 1671 } | 1672 } |
| 1672 | 1673 |
| 1673 proto_library("attestation_proto") { | 1674 proto_library("attestation_proto") { |
| 1674 sources = [ | 1675 sources = [ |
| 1675 "attestation/attestation_key_payload.proto", | 1676 "attestation/attestation_key_payload.proto", |
| 1676 ] | 1677 ] |
| 1677 } | 1678 } |
| OLD | NEW |