OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 30 matching lines...) Expand all Loading... |
41 'public_feature_defines': [ | 41 'public_feature_defines': [ |
42 ], | 42 ], |
43 | 43 |
44 # We have to nest variables inside variables so that they can be overridden | 44 # We have to nest variables inside variables so that they can be overridden |
45 # through GYP_DEFINES. | 45 # through GYP_DEFINES. |
46 'variables': { | 46 'variables': { |
47 # Enables the Oilpan garbage-collection infrastructure. | 47 # Enables the Oilpan garbage-collection infrastructure. |
48 'enable_oilpan%': 0, | 48 'enable_oilpan%': 0, |
49 'blink_gc_profiling%': 0, | 49 'blink_gc_profiling%': 0, |
50 'blink_logging_always_on%': 0, | 50 'blink_logging_always_on%': 0, |
51 'link_core_modules_separately%': 0, | |
52 }, | 51 }, |
53 'conditions': [ | 52 'conditions': [ |
54 ['use_concatenated_impulse_responses==1', { | 53 ['use_concatenated_impulse_responses==1', { |
55 # Use concatenated HRTF impulse responses | 54 # Use concatenated HRTF impulse responses |
56 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 55 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
57 }], | 56 }], |
58 ['OS!="android"', { | 57 ['OS!="android"', { |
59 'feature_defines': [ | 58 'feature_defines': [ |
60 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', | 59 'ENABLE_INPUT_MULTIPLE_FIELDS_UI=1', |
61 'ENABLE_WEB_AUDIO=1' | 60 'ENABLE_WEB_AUDIO=1' |
(...skipping 26 matching lines...) Expand all Loading... |
88 ['blink_gc_profiling==1', { | 87 ['blink_gc_profiling==1', { |
89 'feature_defines': [ | 88 'feature_defines': [ |
90 'ENABLE_GC_PROFILING=1', | 89 'ENABLE_GC_PROFILING=1', |
91 ], | 90 ], |
92 }], | 91 }], |
93 ['blink_logging_always_on==1', { | 92 ['blink_logging_always_on==1', { |
94 'feature_defines': [ | 93 'feature_defines': [ |
95 'LOG_DISABLED=0', | 94 'LOG_DISABLED=0', |
96 ], | 95 ], |
97 }], | 96 }], |
98 ['link_core_modules_separately==1', { | |
99 'feature_defines': [ | |
100 'LINK_CORE_MODULES_SEPARATELY', | |
101 ], | |
102 }], | |
103 ], | 97 ], |
104 | |
105 # shared build only. If set to 1, link web, core and modules separately. | |
106 'link_core_modules_separately%': '<(link_core_modules_separately)', | |
107 }, | 98 }, |
108 } | 99 } |
OLD | NEW |