OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 '..', | 279 '..', |
280 ], | 280 ], |
281 }, # target app_mode_app_support | 281 }, # target app_mode_app_support |
282 { | 282 { |
283 # This produces the template for app mode loader bundles. It's a | 283 # This produces the template for app mode loader bundles. It's a |
284 # template in the sense that parts of it need to be "filled in" by | 284 # template in the sense that parts of it need to be "filled in" by |
285 # Chrome before it can be executed. | 285 # Chrome before it can be executed. |
286 'target_name': 'app_mode_app', | 286 'target_name': 'app_mode_app', |
287 'type': 'executable', | 287 'type': 'executable', |
288 'mac_bundle' : 1, | 288 'mac_bundle' : 1, |
289 'variables': { 'enable_wexit_time_destructors': 1, }, | 289 'variables': { |
| 290 'enable_wexit_time_destructors': 1, |
| 291 'mac_real_dsym': 1, |
| 292 }, |
290 'product_name': 'app_mode_loader', | 293 'product_name': 'app_mode_loader', |
291 'dependencies': [ | 294 'dependencies': [ |
292 'app_mode_app_support', | 295 'app_mode_app_support', |
293 'infoplist_strings_tool', | 296 'infoplist_strings_tool', |
294 ], | 297 ], |
295 'sources': [ | 298 'sources': [ |
296 'app/app_mode_loader_mac.mm', | 299 'app/app_mode_loader_mac.mm', |
297 'app/app_mode-Info.plist', | 300 'app/app_mode-Info.plist', |
298 ], | 301 ], |
299 'include_dirs': [ | 302 'include_dirs': [ |
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 'sources': [ | 855 'sources': [ |
853 'service/cloud_print/print_system_dummy.cc', | 856 'service/cloud_print/print_system_dummy.cc', |
854 ], | 857 ], |
855 }], | 858 }], |
856 ], | 859 ], |
857 }, | 860 }, |
858 ], | 861 ], |
859 }], | 862 }], |
860 ], # 'conditions' | 863 ], # 'conditions' |
861 } | 864 } |
OLD | NEW |