| 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) | 11 assert(is_chromeos) |
| 12 | 12 |
| 13 gypi_values = exec_script("//build/gypi_to_gn.py", | 13 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 14 [ rebase_path("../../chrome_browser_chromeos.gypi") ], | 14 [ rebase_path("../../chrome_browser_chromeos.gypi") ], |
| 15 "scope", | 15 "scope", |
| 16 [ "../../chrome_browser_chromeos.gypi" ]) | 16 [ "../../chrome_browser_chromeos.gypi" ]) |
| 17 | 17 |
| 18 source_set("chromeos") { | 18 source_set("chromeos") { |
| 19 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") | 19 assert(enable_extensions, "ChromeOS Chrome has to be built with extensions") |
| 20 | 20 |
| 21 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 21 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 22 | 22 |
| 23 public_deps = [ | 23 public_deps = [ |
| 24 "//ash/resources", | 24 "//ash/resources", |
| 25 "//ash/strings", | 25 "//ash/strings", |
| 26 "//ash/wm/common/resources", |
| 26 "//chrome:extra_resources", | 27 "//chrome:extra_resources", |
| 27 "//chrome:resources", | 28 "//chrome:resources", |
| 28 "//chrome:strings", | 29 "//chrome:strings", |
| 29 "//chrome/app/resources:platform_locale_settings", | 30 "//chrome/app/resources:platform_locale_settings", |
| 30 "//chrome/app/theme:theme_resources", | 31 "//chrome/app/theme:theme_resources", |
| 31 "//components/wallpaper", | 32 "//components/wallpaper", |
| 32 "//content/app/resources", | 33 "//content/app/resources", |
| 33 "//ui/chromeos/resources", | 34 "//ui/chromeos/resources", |
| 34 "//ui/chromeos/strings", | 35 "//ui/chromeos/strings", |
| 35 "//ui/resources", | 36 "//ui/resources", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 ".", | 185 ".", |
| 185 "//chrome") | 186 "//chrome") |
| 186 | 187 |
| 187 public_deps = [ | 188 public_deps = [ |
| 188 ":chromeos", | 189 ":chromeos", |
| 189 ] | 190 ] |
| 190 deps = [ | 191 deps = [ |
| 191 ":attestation_proto", | 192 ":attestation_proto", |
| 192 ":device_policy_proto", | 193 ":device_policy_proto", |
| 193 "//ash/resources", | 194 "//ash/resources", |
| 195 "//ash/wm/common/resources", |
| 194 "//components/drive", | 196 "//components/drive", |
| 195 "//components/drive:test_support_chromeos", | 197 "//components/drive:test_support_chromeos", |
| 196 "//components/invalidation/public", | 198 "//components/invalidation/public", |
| 197 "//components/policy", | 199 "//components/policy", |
| 198 "//components/resources", | 200 "//components/resources", |
| 199 "//crypto:platform", | 201 "//crypto:platform", |
| 200 "//dbus", | 202 "//dbus", |
| 201 "//mojo/public/cpp/system:system", | 203 "//mojo/public/cpp/system:system", |
| 202 "//skia", | 204 "//skia", |
| 203 "//sync", | 205 "//sync", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 215 "policy/proto/install_attributes.proto", | 217 "policy/proto/install_attributes.proto", |
| 216 ] | 218 ] |
| 217 } | 219 } |
| 218 | 220 |
| 219 proto_library("attestation_proto") { | 221 proto_library("attestation_proto") { |
| 220 sources = [ | 222 sources = [ |
| 221 "attestation/attestation_key_payload.proto", | 223 "attestation/attestation_key_payload.proto", |
| 222 "attestation/attestation_signed_data.proto", | 224 "attestation/attestation_signed_data.proto", |
| 223 ] | 225 ] |
| 224 } | 226 } |
| OLD | NEW |