OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # conditions used in both common.gypi and skia.gyp in chromium | 6 # conditions used in both common.gypi and skia.gyp in chromium |
7 # | 7 # |
8 { | 8 { |
9 'defines': [ | 9 'defines': [ |
10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', | 10 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 '-Wl,-rpath,\$$ORIGIN/lib', | 667 '-Wl,-rpath,\$$ORIGIN/lib', |
668 ], | 668 ], |
669 }], | 669 }], |
670 | 670 |
671 [ 'skia_command_buffer and skia_os == "mac"', { | 671 [ 'skia_command_buffer and skia_os == "mac"', { |
672 'xcode_settings': { | 672 'xcode_settings': { |
673 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'], | 673 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/.'], |
674 }, | 674 }, |
675 }], | 675 }], |
676 | 676 |
| 677 [ 'skia_build_server', { |
| 678 'defines': [ |
| 679 'GR_BATCH_DEBUGGING_OUTPUT=1', |
| 680 ], |
| 681 }], |
| 682 |
677 ], # end 'conditions' | 683 ], # end 'conditions' |
678 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for
more details | 684 # The Xcode SYMROOT must be at the root. See build/common.gypi in chromium for
more details |
679 'xcode_settings': { | 685 'xcode_settings': { |
680 'SYMROOT': '<(DEPTH)/xcodebuild', | 686 'SYMROOT': '<(DEPTH)/xcodebuild', |
681 }, | 687 }, |
682 } | 688 } |
OLD | NEW |