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

Side by Side Diff: chrome/chrome_browser_chromeos.gypi

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Moved chromeos/arc/bridge/common to components/arc/common Created 5 years, 1 month 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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 ['enable_basic_printing==1 or enable_print_preview==1', { 1256 ['enable_basic_printing==1 or enable_print_preview==1', {
1257 'dependencies': [ 1257 'dependencies': [
1258 '../printing/printing.gyp:printing', 1258 '../printing/printing.gyp:printing',
1259 ], 1259 ],
1260 }], 1260 }],
1261 ['use_ozone == 1', { 1261 ['use_ozone == 1', {
1262 'dependencies': [ 1262 'dependencies': [
1263 '../ui/ozone/ozone.gyp:ozone', 1263 '../ui/ozone/ozone.gyp:ozone',
1264 ], 1264 ],
1265 }], 1265 }],
1266 ['enable_arc == 1', {
1267 'dependencies': [
1268 '../components/components.gyp:arc',
1269 ],
1270 }],
1266 ], 1271 ],
1267 }, 1272 },
1268 { 1273 {
1269 # GN version: //chrome/browser/chromeos:device_policy_proto 1274 # GN version: //chrome/browser/chromeos:device_policy_proto
1270 # Protobuf compiler / generator for device settings protocol buffers. 1275 # Protobuf compiler / generator for device settings protocol buffers.
1271 'target_name': 'device_policy_proto', 1276 'target_name': 'device_policy_proto',
1272 'type': 'static_library', 1277 'type': 'static_library',
1273 'sources': [ 1278 'sources': [
1274 'browser/chromeos/policy/proto/chrome_device_policy.proto', 1279 'browser/chromeos/policy/proto/chrome_device_policy.proto',
1275 'browser/chromeos/policy/proto/install_attributes.proto', 1280 'browser/chromeos/policy/proto/install_attributes.proto',
(...skipping 14 matching lines...) Expand all
1290 'browser/chromeos/attestation/attestation_signed_data.proto', 1295 'browser/chromeos/attestation/attestation_signed_data.proto',
1291 ], 1296 ],
1292 'variables': { 1297 'variables': {
1293 'proto_in_dir': 'browser/chromeos/attestation', 1298 'proto_in_dir': 'browser/chromeos/attestation',
1294 'proto_out_dir': 'chrome/browser/chromeos/attestation', 1299 'proto_out_dir': 'chrome/browser/chromeos/attestation',
1295 }, 1300 },
1296 'includes': [ '../build/protoc.gypi' ] 1301 'includes': [ '../build/protoc.gypi' ]
1297 }, 1302 },
1298 ], 1303 ],
1299 } 1304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698