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