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

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

Issue 112913003: Reinforce that ENABLE(OPENTYPE_VERTICAL) is a feature define (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add a comment instead Created 6 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ], 80 ],
81 }], 81 }],
82 ['OS=="android" and use_openmax_dl_fft!=0', { 82 ['OS=="android" and use_openmax_dl_fft!=0', {
83 'feature_defines': [ 83 'feature_defines': [
84 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1', 84 'WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1',
85 # Enabling the FFT is enough to enable WebAudio support to 85 # Enabling the FFT is enough to enable WebAudio support to
86 # allow most WebAudio features to work on Android. 86 # allow most WebAudio features to work on Android.
87 'ENABLE_WEB_AUDIO=1', 87 'ENABLE_WEB_AUDIO=1',
88 ], 88 ],
89 }], 89 }],
90 ['OS=="win" or OS=="android" or OS=="linux"', { 90 # Mac OS X has not implemented support for ENABLE(OPENTYPE_VERTICAL) yet
91 ['OS!="mac"', {
91 'feature_defines': [ 92 'feature_defines': [
92 'ENABLE_OPENTYPE_VERTICAL=1', 93 'ENABLE_OPENTYPE_VERTICAL=1',
93 ], 94 ],
94 }], 95 }],
95 ['use_default_render_theme==1', { 96 ['use_default_render_theme==1', {
96 'feature_defines': [ 97 'feature_defines': [
97 'WTF_USE_DEFAULT_RENDER_THEME=1', 98 'WTF_USE_DEFAULT_RENDER_THEME=1',
98 ], 99 ],
99 }], 100 }],
100 ['enable_oilpan==1', { 101 ['enable_oilpan==1', {
101 'feature_defines': [ 102 'feature_defines': [
102 'ENABLE_OILPAN=1', 103 'ENABLE_OILPAN=1',
103 ], 104 ],
104 }], 105 }],
105 ], 106 ],
106 }, 107 },
107 } 108 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698