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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1258 ['enable_basic_printing==1 or enable_print_preview==1', { | 1258 ['enable_basic_printing==1 or enable_print_preview==1', { |
1259 'dependencies': [ | 1259 'dependencies': [ |
1260 '../printing/printing.gyp:printing', | 1260 '../printing/printing.gyp:printing', |
1261 ], | 1261 ], |
1262 }], | 1262 }], |
1263 ['use_ozone == 1', { | 1263 ['use_ozone == 1', { |
1264 'dependencies': [ | 1264 'dependencies': [ |
1265 '../ui/ozone/ozone.gyp:ozone', | 1265 '../ui/ozone/ozone.gyp:ozone', |
1266 ], | 1266 ], |
1267 }], | 1267 }], |
| 1268 ['enable_arc == 1', { |
| 1269 'dependencies': [ |
| 1270 '../components/components.gyp:arc', |
| 1271 ], |
| 1272 }], |
1268 ], | 1273 ], |
1269 }, | 1274 }, |
1270 { | 1275 { |
1271 # GN version: //chrome/browser/chromeos:device_policy_proto | 1276 # GN version: //chrome/browser/chromeos:device_policy_proto |
1272 # Protobuf compiler / generator for device settings protocol buffers. | 1277 # Protobuf compiler / generator for device settings protocol buffers. |
1273 'target_name': 'device_policy_proto', | 1278 'target_name': 'device_policy_proto', |
1274 'type': 'static_library', | 1279 'type': 'static_library', |
1275 'sources': [ | 1280 'sources': [ |
1276 'browser/chromeos/policy/proto/chrome_device_policy.proto', | 1281 'browser/chromeos/policy/proto/chrome_device_policy.proto', |
1277 'browser/chromeos/policy/proto/install_attributes.proto', | 1282 'browser/chromeos/policy/proto/install_attributes.proto', |
(...skipping 14 matching lines...) Expand all Loading... |
1292 'browser/chromeos/attestation/attestation_signed_data.proto', | 1297 'browser/chromeos/attestation/attestation_signed_data.proto', |
1293 ], | 1298 ], |
1294 'variables': { | 1299 'variables': { |
1295 'proto_in_dir': 'browser/chromeos/attestation', | 1300 'proto_in_dir': 'browser/chromeos/attestation', |
1296 'proto_out_dir': 'chrome/browser/chromeos/attestation', | 1301 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
1297 }, | 1302 }, |
1298 'includes': [ '../build/protoc.gypi' ] | 1303 'includes': [ '../build/protoc.gypi' ] |
1299 }, | 1304 }, |
1300 ], | 1305 ], |
1301 } | 1306 } |
OLD | NEW |