OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |