| 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("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| 11 assert(is_chromeos) |
| 12 |
| 11 gypi_values = exec_script("//build/gypi_to_gn.py", | 13 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 12 [ rebase_path("../../chrome_browser_chromeos.gypi") ], | 14 [ rebase_path("../../chrome_browser_chromeos.gypi") ], |
| 13 "scope", | 15 "scope", |
| 14 [ "../../chrome_browser_chromeos.gypi" ]) | 16 [ "../../chrome_browser_chromeos.gypi" ]) |
| 15 | 17 |
| 16 source_set("chromeos") { | 18 source_set("chromeos") { |
| 17 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") | 19 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") |
| 18 | 20 |
| 19 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 21 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 20 | 22 |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 "policy/proto/install_attributes.proto", | 198 "policy/proto/install_attributes.proto", |
| 197 ] | 199 ] |
| 198 } | 200 } |
| 199 | 201 |
| 200 proto_library("attestation_proto") { | 202 proto_library("attestation_proto") { |
| 201 sources = [ | 203 sources = [ |
| 202 "attestation/attestation_key_payload.proto", | 204 "attestation/attestation_key_payload.proto", |
| 203 "attestation/attestation_signed_data.proto", | 205 "attestation/attestation_signed_data.proto", |
| 204 ] | 206 ] |
| 205 } | 207 } |
| OLD | NEW |