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