| 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 1519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1530 "login/screens/mock_base_screen_delegate.cc", | 1530 "login/screens/mock_base_screen_delegate.cc", |
| 1531 "login/screens/mock_base_screen_delegate.h", | 1531 "login/screens/mock_base_screen_delegate.h", |
| 1532 "login/screens/mock_error_screen.cc", | 1532 "login/screens/mock_error_screen.cc", |
| 1533 "login/screens/mock_error_screen.h", | 1533 "login/screens/mock_error_screen.h", |
| 1534 "login/screens/mock_model_view_channel.cc", | 1534 "login/screens/mock_model_view_channel.cc", |
| 1535 "login/screens/mock_model_view_channel.h", | 1535 "login/screens/mock_model_view_channel.h", |
| 1536 "login/screens/mock_network_screen.cc", | 1536 "login/screens/mock_network_screen.cc", |
| 1537 "login/screens/mock_network_screen.h", | 1537 "login/screens/mock_network_screen.h", |
| 1538 "login/screens/mock_update_screen.cc", | 1538 "login/screens/mock_update_screen.cc", |
| 1539 "login/screens/mock_update_screen.h", | 1539 "login/screens/mock_update_screen.h", |
| 1540 "scoped_set_running_on_chromeos_for_testing.cc", |
| 1541 "scoped_set_running_on_chromeos_for_testing.h", |
| 1540 ] | 1542 ] |
| 1541 | 1543 |
| 1542 deps = [ | 1544 deps = [ |
| 1543 ":chromeos", | 1545 ":chromeos", |
| 1544 "//chromeos", | 1546 "//chromeos", |
| 1545 "//components/policy/proto", | 1547 "//components/policy/proto", |
| 1546 "//crypto:platform", | 1548 "//crypto:platform", |
| 1547 "//skia", | 1549 "//skia", |
| 1548 "//testing/gmock", | 1550 "//testing/gmock", |
| 1549 ] | 1551 ] |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1832 | 1834 |
| 1833 public_deps = [ | 1835 public_deps = [ |
| 1834 ":chromeos", | 1836 ":chromeos", |
| 1835 ] | 1837 ] |
| 1836 deps = [ | 1838 deps = [ |
| 1837 ":arc_test_support", | 1839 ":arc_test_support", |
| 1838 ":attestation_proto", | 1840 ":attestation_proto", |
| 1839 ":device_policy_proto", | 1841 ":device_policy_proto", |
| 1840 ":test_support", | 1842 ":test_support", |
| 1841 "//ash/resources", | 1843 "//ash/resources", |
| 1844 "//base", |
| 1842 "//components/cryptauth:test_support", | 1845 "//components/cryptauth:test_support", |
| 1843 "//components/drive", | 1846 "//components/drive", |
| 1844 "//components/drive:test_support_chromeos", | 1847 "//components/drive:test_support_chromeos", |
| 1845 "//components/invalidation/public", | 1848 "//components/invalidation/public", |
| 1846 "//components/policy:generated", | 1849 "//components/policy:generated", |
| 1847 "//components/resources", | 1850 "//components/resources", |
| 1848 "//components/sync", | 1851 "//components/sync", |
| 1849 "//components/variations:test_support", | 1852 "//components/variations:test_support", |
| 1850 "//crypto:platform", | 1853 "//crypto:platform", |
| 1851 "//dbus", | 1854 "//dbus", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 1868 "policy/proto/chrome_device_policy.proto", | 1871 "policy/proto/chrome_device_policy.proto", |
| 1869 "policy/proto/install_attributes.proto", | 1872 "policy/proto/install_attributes.proto", |
| 1870 ] | 1873 ] |
| 1871 } | 1874 } |
| 1872 | 1875 |
| 1873 proto_library("attestation_proto") { | 1876 proto_library("attestation_proto") { |
| 1874 sources = [ | 1877 sources = [ |
| 1875 "attestation/attestation_key_payload.proto", | 1878 "attestation/attestation_key_payload.proto", |
| 1876 ] | 1879 ] |
| 1877 } | 1880 } |
| OLD | NEW |