| 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") |
| 11 | 11 |
| 12 assert(is_chromeos) | 12 assert(is_chromeos) |
| 13 | 13 |
| 14 source_set("chromeos") { | 14 source_set("chromeos") { |
| 15 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") | 15 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") |
| 16 | 16 |
| 17 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 17 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 18 | 18 |
| 19 public_deps = [ | 19 public_deps = [ |
| 20 ":device_policy_proto", | 20 ":device_policy_proto", |
| 21 "//ash/common/strings", | |
| 22 "//ash/resources", | 21 "//ash/resources", |
| 22 "//ash/strings", |
| 23 "//chrome:extra_resources", | 23 "//chrome:extra_resources", |
| 24 "//chrome:resources", | 24 "//chrome:resources", |
| 25 "//chrome:strings", | 25 "//chrome:strings", |
| 26 "//chrome/app/resources:platform_locale_settings", | 26 "//chrome/app/resources:platform_locale_settings", |
| 27 "//chrome/app/theme:theme_resources", | 27 "//chrome/app/theme:theme_resources", |
| 28 "//chromeos:power_manager_proto", | 28 "//chromeos:power_manager_proto", |
| 29 "//components/wallpaper", | 29 "//components/wallpaper", |
| 30 "//content/app/resources", | 30 "//content/app/resources", |
| 31 "//ui/chromeos/resources", | 31 "//ui/chromeos/resources", |
| 32 "//ui/chromeos/strings", | 32 "//ui/chromeos/strings", |
| (...skipping 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1787 "policy/proto/chrome_device_policy.proto", | 1787 "policy/proto/chrome_device_policy.proto", |
| 1788 "policy/proto/install_attributes.proto", | 1788 "policy/proto/install_attributes.proto", |
| 1789 ] | 1789 ] |
| 1790 } | 1790 } |
| 1791 | 1791 |
| 1792 proto_library("attestation_proto") { | 1792 proto_library("attestation_proto") { |
| 1793 sources = [ | 1793 sources = [ |
| 1794 "attestation/attestation_key_payload.proto", | 1794 "attestation/attestation_key_payload.proto", |
| 1795 ] | 1795 ] |
| 1796 } | 1796 } |
| OLD | NEW |