Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(816)

Side by Side Diff: chrome/browser/chromeos/BUILD.gn

Issue 2006083002: Use fake Input Device Settings with chrome://device-emulator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@DevicePageTestsFixes
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698