| 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 # Helper.app/Contents/MacOS | 270 # Helper.app/Contents/MacOS |
| 271 '@loader_path/../../../../../../..', | 271 '@loader_path/../../../../../../..', |
| 272 ], | 272 ], |
| 273 }, | 273 }, |
| 274 }], | 274 }], |
| 275 ], | 275 ], |
| 276 }, # target helper_app | 276 }, # target helper_app |
| 277 { | 277 { |
| 278 # A library containing the actual code for the app mode app, shared | 278 # A library containing the actual code for the app mode app, shared |
| 279 # by unit tests. | 279 # by unit tests. |
| 280 # GN: //chrome/common:app_mode_app_support |
| 280 'target_name': 'app_mode_app_support', | 281 'target_name': 'app_mode_app_support', |
| 281 'type': 'static_library', | 282 'type': 'static_library', |
| 282 'variables': { 'enable_wexit_time_destructors': 1, }, | 283 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 283 'product_name': 'app_mode_app_support', | 284 'product_name': 'app_mode_app_support', |
| 284 'dependencies': [ | 285 'dependencies': [ |
| 285 '../base/base.gyp:base', | 286 '../base/base.gyp:base', |
| 286 'common_constants.gyp:common_constants', | 287 'common_constants.gyp:common_constants', |
| 287 ], | 288 ], |
| 288 'sources': [ | 289 'sources': [ |
| 289 'common/mac/app_mode_chrome_locator.h', | 290 'common/mac/app_mode_chrome_locator.h', |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 814 '<(DEPTH)/third_party/kasko' | 815 '<(DEPTH)/third_party/kasko' |
| 815 ], | 816 ], |
| 816 }, | 817 }, |
| 817 }, | 818 }, |
| 818 }, | 819 }, |
| 819 }, | 820 }, |
| 820 ], | 821 ], |
| 821 }], | 822 }], |
| 822 ], # 'conditions' | 823 ], # 'conditions' |
| 823 } | 824 } |
| OLD | NEW |