OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'test_shell_windows_resource_files': [ | 8 'test_shell_windows_resource_files': [ |
9 'resources/test_shell.rc', | 9 'resources/test_shell.rc', |
10 'resources/pan_east.cur', | 10 'resources/pan_east.cur', |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 }], | 528 }], |
529 ['OS=="mac"', { | 529 ['OS=="mac"', { |
530 'product_name': 'TestNetscapePlugIn', | 530 'product_name': 'TestNetscapePlugIn', |
531 'product_extension': 'plugin', | 531 'product_extension': 'plugin', |
532 'link_settings': { | 532 'link_settings': { |
533 'libraries': [ | 533 'libraries': [ |
534 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 534 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
535 ], | 535 ], |
536 }, | 536 }, |
537 }], | 537 }], |
538 ['OS=="linux" and target_arch=="x64"', { | 538 ['OS=="linux" and (target_arch=="x64" or target_arch=="arm")', { |
539 # Shared libraries need -fPIC on x86-64 | 539 # Shared libraries need -fPIC on x86-64 |
540 'cflags': ['-fPIC'] | 540 'cflags': ['-fPIC'] |
541 }], | 541 }], |
542 ], | 542 ], |
543 }, | 543 }, |
544 ], | 544 ], |
545 'conditions': [ | 545 'conditions': [ |
546 ['target_arch!="x64"', { | 546 ['target_arch!="x64"', { |
547 'targets': [ | 547 'targets': [ |
548 { | 548 { |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 ], | 704 ], |
705 }], | 705 }], |
706 ], | 706 ], |
707 } | 707 } |
708 | 708 |
709 # Local Variables: | 709 # Local Variables: |
710 # tab-width:2 | 710 # tab-width:2 |
711 # indent-tabs-mode:nil | 711 # indent-tabs-mode:nil |
712 # End: | 712 # End: |
713 # vim: set expandtab tabstop=2 shiftwidth=2: | 713 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |