Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: third_party/WebKit/Source/build/features.gypi

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 22 matching lines...) Expand all
33 # 33 #
34 # ==================================== 34 # ====================================
35 # 35 #
36 # Keep the GN version in Sync: 36 # Keep the GN version in Sync:
37 # Source/config.gni 37 # Source/config.gni
38 # 38 #
39 # ==================================== 39 # ====================================
40 'variables': { 40 'variables': {
41 'feature_defines': [ 41 'feature_defines': [
42 'ENABLE_LAYOUT_UNIT_IN_INLINE_BOXES=0', 42 'ENABLE_LAYOUT_UNIT_IN_INLINE_BOXES=0',
43 'ENABLE_OILPAN=1',
43 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi 44 # WTF_USE_DYNAMIC_ANNOTATIONS=1 may be defined in build/common.gypi
44 # We can't define it here because it should be present only 45 # We can't define it here because it should be present only
45 # in Debug or release_valgrind_build=1 builds. 46 # in Debug or release_valgrind_build=1 builds.
46 ], 47 ],
47 # We have to nest variables inside variables so that they can be overridden 48 # We have to nest variables inside variables so that they can be overridden
48 # through GYP_DEFINES. 49 # through GYP_DEFINES.
49 'variables': { 50 'variables': {
50 # Enables the Oilpan garbage-collection infrastructure. 51 # Enables the Oilpan garbage-collection infrastructure.
51 # If you update the default value below, be sure to update the one in 52 # If you update the default value below, be sure to update the one in
52 # ../config.gyp, too! 53 # ../config.gyp, too!
(...skipping 25 matching lines...) Expand all
78 ['OS=="android" and use_openmax_dl_fft!=0', { 79 ['OS=="android" and use_openmax_dl_fft!=0', {
79 'feature_defines': [ 80 'feature_defines': [
80 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', 81 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1',
81 ], 82 ],
82 }], 83 }],
83 ['use_default_render_theme==1', { 84 ['use_default_render_theme==1', {
84 'feature_defines': [ 85 'feature_defines': [
85 'WTF_USE_DEFAULT_RENDER_THEME=1', 86 'WTF_USE_DEFAULT_RENDER_THEME=1',
86 ], 87 ],
87 }], 88 }],
88 ['enable_oilpan==1', {
89 'feature_defines': [
90 'ENABLE_OILPAN=1',
91 ],
92 }],
93 ['blink_logging_always_on==1', { 89 ['blink_logging_always_on==1', {
94 'feature_defines': [ 90 'feature_defines': [
95 'LOG_DISABLED=0', 91 'LOG_DISABLED=0',
96 ], 92 ],
97 }], 93 }],
98 ], 94 ],
99 }, 95 },
100 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698