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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 # These files lists are shared with the GN build. 8 # These files lists are shared with the GN build.
9 'browser_chromeos_sources': [ 9 'browser_chromeos_sources': [
10 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test s 10 # All .cc, .h, .m, and .mm files under browser/chromeos, except for test s
(...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1125 'browser/chromeos/extensions/wallpaper_api.cc', 1125 'browser/chromeos/extensions/wallpaper_api.cc',
1126 'browser/chromeos/extensions/wallpaper_api.h', 1126 'browser/chromeos/extensions/wallpaper_api.h',
1127 'browser/chromeos/extensions/wallpaper_function_base.cc', 1127 'browser/chromeos/extensions/wallpaper_function_base.cc',
1128 'browser/chromeos/extensions/wallpaper_function_base.h', 1128 'browser/chromeos/extensions/wallpaper_function_base.h',
1129 'browser/chromeos/extensions/wallpaper_manager_util.cc', 1129 'browser/chromeos/extensions/wallpaper_manager_util.cc',
1130 'browser/chromeos/extensions/wallpaper_manager_util.h', 1130 'browser/chromeos/extensions/wallpaper_manager_util.h',
1131 'browser/chromeos/extensions/wallpaper_private_api.cc', 1131 'browser/chromeos/extensions/wallpaper_private_api.cc',
1132 'browser/chromeos/extensions/wallpaper_private_api.h', 1132 'browser/chromeos/extensions/wallpaper_private_api.h',
1133 'browser/ui/webui/voice_search_ui.cc', 1133 'browser/ui/webui/voice_search_ui.cc',
1134 'browser/ui/webui/voice_search_ui.h', 1134 'browser/ui/webui/voice_search_ui.h',
1135
1136 ],
1137 # Sources that should not be included in the official build.
1138 'browser_chromeos_non_official_sources': [
1139 'browser/chromeos/system/fake_input_device_settings.cc',
1140 'browser/chromeos/system/fake_input_device_settings.h',
1135 ], 1141 ],
1136 }, 1142 },
1137 'targets': [ 1143 'targets': [
1138 { 1144 {
1139 # GN version: //chrome/browser/chromeos 1145 # GN version: //chrome/browser/chromeos
1140 'target_name': 'browser_chromeos', 1146 'target_name': 'browser_chromeos',
1141 'type': 'static_library', 1147 'type': 'static_library',
1142 'variables': { 1148 'variables': {
1143 # Override to dynamically link the cras (ChromeOS audio) library. 1149 # Override to dynamically link the cras (ChromeOS audio) library.
1144 'use_cras%': 0, 1150 'use_cras%': 0,
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 '../printing/printing.gyp:printing', 1328 '../printing/printing.gyp:printing',
1323 ], 1329 ],
1324 }], 1330 }],
1325 ['use_ozone == 1', { 1331 ['use_ozone == 1', {
1326 'dependencies': [ 1332 'dependencies': [
1327 '../ui/ozone/ozone.gyp:ozone', 1333 '../ui/ozone/ozone.gyp:ozone',
1328 '../ui/ozone/ozone.gyp:ozone_base', 1334 '../ui/ozone/ozone.gyp:ozone_base',
1329 ], 1335 ],
1330 }], 1336 }],
1331 ], 1337 ],
1338 'configurations': {
1339 'Debug': {
1340 'conditions': [
1341 ['buildtype!="Official"', {
stevenjb 2016/05/24 20:57:25 Do we even support official Debug builds?
1342 'sources': [ '<@(browser_chromeos_non_official_sources)' ],
1343 }],
1344 ],
1345 },
1346 },
1332 }, 1347 },
1333 { 1348 {
1334 # GN version: //chrome/browser/chromeos:device_policy_proto 1349 # GN version: //chrome/browser/chromeos:device_policy_proto
1335 # Protobuf compiler / generator for device settings protocol buffers. 1350 # Protobuf compiler / generator for device settings protocol buffers.
1336 'target_name': 'device_policy_proto', 1351 'target_name': 'device_policy_proto',
1337 'type': 'static_library', 1352 'type': 'static_library',
1338 'sources': [ 1353 'sources': [
1339 'browser/chromeos/policy/proto/chrome_device_policy.proto', 1354 'browser/chromeos/policy/proto/chrome_device_policy.proto',
1340 'browser/chromeos/policy/proto/install_attributes.proto', 1355 'browser/chromeos/policy/proto/install_attributes.proto',
1341 ], 1356 ],
(...skipping 13 matching lines...) Expand all
1355 'browser/chromeos/attestation/attestation_signed_data.proto', 1370 'browser/chromeos/attestation/attestation_signed_data.proto',
1356 ], 1371 ],
1357 'variables': { 1372 'variables': {
1358 'proto_in_dir': 'browser/chromeos/attestation', 1373 'proto_in_dir': 'browser/chromeos/attestation',
1359 'proto_out_dir': 'chrome/browser/chromeos/attestation', 1374 'proto_out_dir': 'chrome/browser/chromeos/attestation',
1360 }, 1375 },
1361 'includes': [ '../build/protoc.gypi' ] 1376 'includes': [ '../build/protoc.gypi' ]
1362 }, 1377 },
1363 ], 1378 ],
1364 } 1379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698