| 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 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 'browser/chromeos/extensions/wallpaper_private_api.cc', | 1097 'browser/chromeos/extensions/wallpaper_private_api.cc', |
| 1098 'browser/chromeos/extensions/wallpaper_private_api.h', | 1098 'browser/chromeos/extensions/wallpaper_private_api.h', |
| 1099 ], | 1099 ], |
| 1100 }, | 1100 }, |
| 1101 'targets': [ | 1101 'targets': [ |
| 1102 { | 1102 { |
| 1103 # GN version: //chrome/browser/chromeos | 1103 # GN version: //chrome/browser/chromeos |
| 1104 'target_name': 'browser_chromeos', | 1104 'target_name': 'browser_chromeos', |
| 1105 'type': 'static_library', | 1105 'type': 'static_library', |
| 1106 'variables': { | 1106 'variables': { |
| 1107 'conditions': [ | |
| 1108 ['sysroot!=""', { | |
| 1109 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar
get_arch)" "<(system_libdir)"', | |
| 1110 }, { | |
| 1111 'pkg-config': 'pkg-config' | |
| 1112 }], | |
| 1113 ], | |
| 1114 # Override to dynamically link the cras (ChromeOS audio) library. | 1107 # Override to dynamically link the cras (ChromeOS audio) library. |
| 1115 'use_cras%': 0, | 1108 'use_cras%': 0, |
| 1116 'enable_wexit_time_destructors': 1, | 1109 'enable_wexit_time_destructors': 1, |
| 1117 }, | 1110 }, |
| 1118 'dependencies': [ | 1111 'dependencies': [ |
| 1119 # TODO(tbarzic): Cleanup this list. | 1112 # TODO(tbarzic): Cleanup this list. |
| 1120 'attestation_proto', | 1113 'attestation_proto', |
| 1121 'browser/extensions/api/api_registration.gyp:chrome_api_registration', | 1114 'browser/extensions/api/api_registration.gyp:chrome_api_registration', |
| 1122 'browser_extensions', | 1115 'browser_extensions', |
| 1123 'cert_logger_proto', | 1116 'cert_logger_proto', |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1339 'browser/chromeos/attestation/attestation_signed_data.proto', | 1332 'browser/chromeos/attestation/attestation_signed_data.proto', |
| 1340 ], | 1333 ], |
| 1341 'variables': { | 1334 'variables': { |
| 1342 'proto_in_dir': 'browser/chromeos/attestation', | 1335 'proto_in_dir': 'browser/chromeos/attestation', |
| 1343 'proto_out_dir': 'chrome/browser/chromeos/attestation', | 1336 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
| 1344 }, | 1337 }, |
| 1345 'includes': [ '../build/protoc.gypi' ] | 1338 'includes': [ '../build/protoc.gypi' ] |
| 1346 }, | 1339 }, |
| 1347 ], | 1340 ], |
| 1348 } | 1341 } |
| OLD | NEW |