| 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 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 ] | 167 ] |
| 168 } | 168 } |
| 169 | 169 |
| 170 if (use_cras) { | 170 if (use_cras) { |
| 171 defines += [ "USE_CRAS" ] | 171 defines += [ "USE_CRAS" ] |
| 172 } | 172 } |
| 173 | 173 |
| 174 if (ui_compositor_image_transport) { | 174 if (ui_compositor_image_transport) { |
| 175 deps += [ "//ui/gl" ] | 175 deps += [ "//ui/gl" ] |
| 176 } | 176 } |
| 177 |
| 178 if (!is_official_build && is_debug) { |
| 179 sources += rebase_path(gypi_values.browser_chromeos_non_official_sources, |
| 180 ".", |
| 181 "//chrome") |
| 182 } |
| 177 } | 183 } |
| 178 | 184 |
| 179 source_set("unit_tests") { | 185 source_set("unit_tests") { |
| 180 testonly = true | 186 testonly = true |
| 181 | 187 |
| 182 sources = rebase_path( | 188 sources = rebase_path( |
| 183 chrome_tests_unit_gypi_values.chrome_unit_tests_chromeos_sources + | 189 chrome_tests_unit_gypi_values.chrome_unit_tests_chromeos_sources + |
| 184 chrome_tests_unit_gypi_values.chrome_unit_tests_arc_sources, | 190 chrome_tests_unit_gypi_values.chrome_unit_tests_arc_sources, |
| 185 ".", | 191 ".", |
| 186 "//chrome") | 192 "//chrome") |
| (...skipping 30 matching lines...) Expand all Loading... |
| 217 "policy/proto/install_attributes.proto", | 223 "policy/proto/install_attributes.proto", |
| 218 ] | 224 ] |
| 219 } | 225 } |
| 220 | 226 |
| 221 proto_library("attestation_proto") { | 227 proto_library("attestation_proto") { |
| 222 sources = [ | 228 sources = [ |
| 223 "attestation/attestation_key_payload.proto", | 229 "attestation/attestation_key_payload.proto", |
| 224 "attestation/attestation_signed_data.proto", | 230 "attestation/attestation_signed_data.proto", |
| 225 ] | 231 ] |
| 226 } | 232 } |
| OLD | NEW |