| 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("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 8 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| 10 | 11 |
| 11 assert(is_chromeos) | 12 assert(is_chromeos) |
| 12 | 13 |
| 13 source_set("chromeos") { | 14 source_set("chromeos") { |
| 14 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") | 15 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") |
| 15 | 16 |
| 16 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 17 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| (...skipping 1620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1637 "policy/proto/chrome_device_policy.proto", | 1638 "policy/proto/chrome_device_policy.proto", |
| 1638 "policy/proto/install_attributes.proto", | 1639 "policy/proto/install_attributes.proto", |
| 1639 ] | 1640 ] |
| 1640 } | 1641 } |
| 1641 | 1642 |
| 1642 proto_library("attestation_proto") { | 1643 proto_library("attestation_proto") { |
| 1643 sources = [ | 1644 sources = [ |
| 1644 "attestation/attestation_key_payload.proto", | 1645 "attestation/attestation_key_payload.proto", |
| 1645 ] | 1646 ] |
| 1646 } | 1647 } |
| OLD | NEW |