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

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

Issue 323123004: Replace compile time guard with runtime flag in blink and remove ENABLE_FAST_MOBILE_SCROLLING in gy… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix gni file. Created 6 years, 6 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 | Source/config.gni » ('j') | 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'enable_oilpan%': 0, 45 'enable_oilpan%': 0,
46 'gc_tracing%': 0 46 'gc_tracing%': 0
47 }, 47 },
48 'conditions': [ 48 'conditions': [
49 ['use_concatenated_impulse_responses==1', { 49 ['use_concatenated_impulse_responses==1', {
50 # Use concatenated HRTF impulse responses 50 # Use concatenated HRTF impulse responses
51 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], 51 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'],
52 }], 52 }],
53 ['OS=="android"', { 53 ['OS=="android"', {
54 'feature_defines': [ 54 'feature_defines': [
55 'ENABLE_FAST_MOBILE_SCROLLING=1',
56 'ENABLE_MEDIA_CAPTURE=1' 55 'ENABLE_MEDIA_CAPTURE=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_MEDIA_CAPTURE=0', 60 'ENABLE_MEDIA_CAPTURE=0',
62 'ENABLE_WEB_AUDIO=1' 61 'ENABLE_WEB_AUDIO=1'
63 ], 62 ],
64 }], 63 }],
65 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg. 64 # Mac OS X uses Accelerate.framework FFT by default instead of FFmpeg.
(...skipping 27 matching lines...) Expand all
93 ], 92 ],
94 }], 93 }],
95 ['gc_tracing==1', { 94 ['gc_tracing==1', {
96 'feature_defines': [ 95 'feature_defines': [
97 'ENABLE_GC_TRACING=1', 96 'ENABLE_GC_TRACING=1',
98 ], 97 ],
99 }], 98 }],
100 ], 99 ],
101 }, 100 },
102 } 101 }
OLDNEW
« no previous file with comments | « no previous file | Source/config.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698