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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'WTF_USE_DEFAULT_RENDER_THEME=1', | 83 'WTF_USE_DEFAULT_RENDER_THEME=1', |
84 ], | 84 ], |
85 }], | 85 }], |
86 ['enable_oilpan==1', { | 86 ['enable_oilpan==1', { |
87 'feature_defines': [ | 87 'feature_defines': [ |
88 'ENABLE_OILPAN=1', | 88 'ENABLE_OILPAN=1', |
89 'ENABLE_LAZY_SWEEPING=1', | 89 'ENABLE_LAZY_SWEEPING=1', |
90 'ENABLE_IDLE_GC=1', | 90 'ENABLE_IDLE_GC=1', |
91 ], | 91 ], |
92 }], | 92 }], |
| 93 ['enable_oilpan==0', { |
| 94 'feature_defines': [ |
| 95 'ENABLE_LAZY_SWEEPING=1', |
| 96 ], |
| 97 }], |
93 ['blink_gc_profiling==1', { | 98 ['blink_gc_profiling==1', { |
94 'feature_defines': [ | 99 'feature_defines': [ |
95 'ENABLE_GC_PROFILING=1', | 100 'ENABLE_GC_PROFILING=1', |
96 ], | 101 ], |
97 }], | 102 }], |
98 ['blink_logging_always_on==1', { | 103 ['blink_logging_always_on==1', { |
99 'feature_defines': [ | 104 'feature_defines': [ |
100 'LOG_DISABLED=0', | 105 'LOG_DISABLED=0', |
101 ], | 106 ], |
102 }], | 107 }], |
103 ['link_core_modules_separately==1', { | 108 ['link_core_modules_separately==1', { |
104 'feature_defines': [ | 109 'feature_defines': [ |
105 'LINK_CORE_MODULES_SEPARATELY', | 110 'LINK_CORE_MODULES_SEPARATELY', |
106 ], | 111 ], |
107 }], | 112 }], |
108 ], | 113 ], |
109 | 114 |
110 # shared build only. If set to 1, link web, core and modules separately. | 115 # shared build only. If set to 1, link web, core and modules separately. |
111 'link_core_modules_separately%': '<(link_core_modules_separately)', | 116 'link_core_modules_separately%': '<(link_core_modules_separately)', |
112 }, | 117 }, |
113 } | 118 } |
OLD | NEW |