| 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
| 10 'type': 'none', | 10 'type': 'none', |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 '_ChromeMain', | 354 '_ChromeMain', |
| 355 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', | 355 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}', |
| 356 ], | 356 ], |
| 357 }, | 357 }, |
| 358 { | 358 { |
| 359 # Modify the Info.plist as needed. The script explains why | 359 # Modify the Info.plist as needed. The script explains why |
| 360 # this is needed. This is also done in the chrome target. | 360 # this is needed. This is also done in the chrome target. |
| 361 # The framework needs the Breakpad keys if this feature is | 361 # The framework needs the Breakpad keys if this feature is |
| 362 # enabled. It does not need the Keystone keys; these always | 362 # enabled. It does not need the Keystone keys; these always |
| 363 # come from the outer application bundle. The framework | 363 # come from the outer application bundle. The framework |
| 364 # doesn't currently use the Subversion keys for anything, | 364 # doesn't currently use the SCM keys for anything, |
| 365 # but this seems like a really good place to store them. | 365 # but this seems like a really good place to store them. |
| 366 'postbuild_name': 'Tweak Info.plist', | 366 'postbuild_name': 'Tweak Info.plist', |
| 367 'action': ['<(tweak_info_plist_path)', | 367 'action': ['<(tweak_info_plist_path)', |
| 368 '--breakpad=<(mac_breakpad_compiled_in)', | 368 '--breakpad=<(mac_breakpad_compiled_in)', |
| 369 '--breakpad_uploads=<(mac_breakpad_uploads)', | 369 '--breakpad_uploads=<(mac_breakpad_uploads)', |
| 370 '--keystone=0', | 370 '--keystone=0', |
| 371 '--svn=1', | 371 '--scm=1', |
| 372 '--branding=<(branding)'], | 372 '--branding=<(branding)'], |
| 373 }, | 373 }, |
| 374 { | 374 { |
| 375 'postbuild_name': 'Symlink Libraries', | 375 'postbuild_name': 'Symlink Libraries', |
| 376 'action': [ | 376 'action': [ |
| 377 'ln', | 377 'ln', |
| 378 '-fns', | 378 '-fns', |
| 379 'Versions/Current/Libraries', | 379 'Versions/Current/Libraries', |
| 380 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' | 380 '${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Libraries' |
| 381 ], | 381 ], |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 ], | 538 ], |
| 539 }], | 539 }], |
| 540 ], # conditions | 540 ], # conditions |
| 541 }], # OS=="mac" | 541 }], # OS=="mac" |
| 542 ], # conditions | 542 ], # conditions |
| 543 }, # target chrome_dll | 543 }, # target chrome_dll |
| 544 ], # targets | 544 ], # targets |
| 545 }], # OS=="mac" or OS=="win" | 545 }], # OS=="mac" or OS=="win" |
| 546 ], | 546 ], |
| 547 } | 547 } |
| OLD | NEW |