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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 # We can't define it here because it should be present only | 44 # We can't define it here because it should be present only |
45 # in Debug or release_valgrind_build=1 builds. | 45 # in Debug or release_valgrind_build=1 builds. |
46 ], | 46 ], |
47 # We have to nest variables inside variables so that they can be overridden | 47 # We have to nest variables inside variables so that they can be overridden |
48 # through GYP_DEFINES. | 48 # through GYP_DEFINES. |
49 'variables': { | 49 'variables': { |
50 # Enables the Oilpan garbage-collection infrastructure. | 50 # Enables the Oilpan garbage-collection infrastructure. |
51 # If you update the default value below, be sure to update the one in | 51 # If you update the default value below, be sure to update the one in |
52 # ../config.gyp, too! | 52 # ../config.gyp, too! |
53 'enable_oilpan%': 1, | 53 'enable_oilpan%': 1, |
54 'detailed_memory_infra%': 0, | |
55 'blink_logging_always_on%': 0, | 54 'blink_logging_always_on%': 0, |
56 'link_core_modules_separately%': 1, | 55 'link_core_modules_separately%': 1, |
57 }, | 56 }, |
58 'conditions': [ | 57 'conditions': [ |
59 ['use_concatenated_impulse_responses==1', { | 58 ['use_concatenated_impulse_responses==1', { |
60 # Use concatenated HRTF impulse responses | 59 # Use concatenated HRTF impulse responses |
61 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], | 60 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], |
62 }], | 61 }], |
63 ['OS=="android"', { | 62 ['OS=="android"', { |
64 'feature_defines': [ | 63 'feature_defines': [ |
(...skipping 25 matching lines...) Expand all Loading... |
90 ['use_default_render_theme==1', { | 89 ['use_default_render_theme==1', { |
91 'feature_defines': [ | 90 'feature_defines': [ |
92 'WTF_USE_DEFAULT_RENDER_THEME=1', | 91 'WTF_USE_DEFAULT_RENDER_THEME=1', |
93 ], | 92 ], |
94 }], | 93 }], |
95 ['enable_oilpan==1', { | 94 ['enable_oilpan==1', { |
96 'feature_defines': [ | 95 'feature_defines': [ |
97 'ENABLE_OILPAN=1', | 96 'ENABLE_OILPAN=1', |
98 ], | 97 ], |
99 }], | 98 }], |
100 ['detailed_memory_infra==1', { | |
101 'feature_defines': [ | |
102 'ENABLE_DETAILED_MEMORY_INFRA=1', | |
103 ], | |
104 }], | |
105 ['blink_logging_always_on==1', { | 99 ['blink_logging_always_on==1', { |
106 'feature_defines': [ | 100 'feature_defines': [ |
107 'LOG_DISABLED=0', | 101 'LOG_DISABLED=0', |
108 ], | 102 ], |
109 }], | 103 }], |
110 ['link_core_modules_separately==1 and component=="shared_library"', { | 104 ['link_core_modules_separately==1 and component=="shared_library"', { |
111 'feature_defines': [ | 105 'feature_defines': [ |
112 'LINK_CORE_MODULES_SEPARATELY', | 106 'LINK_CORE_MODULES_SEPARATELY', |
113 ], | 107 ], |
114 }], | 108 }], |
115 ], | 109 ], |
116 | 110 |
117 # shared build only. If set to 1, link web, core and modules separately. | 111 # shared build only. If set to 1, link web, core and modules separately. |
118 'link_core_modules_separately%': '<(link_core_modules_separately)', | 112 'link_core_modules_separately%': '<(link_core_modules_separately)', |
119 }, | 113 }, |
120 } | 114 } |
OLD | NEW |