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

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

Issue 907353002: Revert of Added behind link_core_modules_separately flag to gyp files. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/core/core.gyp » ('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 30 matching lines...) Expand all
41 'public_feature_defines': [ 41 'public_feature_defines': [
42 ], 42 ],
43 43
44 # We have to nest variables inside variables so that they can be overridden 44 # We have to nest variables inside variables so that they can be overridden
45 # through GYP_DEFINES. 45 # through GYP_DEFINES.
46 'variables': { 46 'variables': {
47 # Enables the Oilpan garbage-collection infrastructure. 47 # Enables the Oilpan garbage-collection infrastructure.
48 'enable_oilpan%': 0, 48 'enable_oilpan%': 0,
49 'blink_gc_profiling%': 0, 49 'blink_gc_profiling%': 0,
50 'blink_logging_always_on%': 0, 50 'blink_logging_always_on%': 0,
51 'link_core_modules_separately%': 0,
52 }, 51 },
53 'conditions': [ 52 'conditions': [
54 ['use_concatenated_impulse_responses==1', { 53 ['use_concatenated_impulse_responses==1', {
55 # Use concatenated HRTF impulse responses 54 # Use concatenated HRTF impulse responses
56 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'], 55 'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=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_WEB_AUDIO=1' 60 'ENABLE_WEB_AUDIO=1'
(...skipping 26 matching lines...) Expand all
88 ['blink_gc_profiling==1', { 87 ['blink_gc_profiling==1', {
89 'feature_defines': [ 88 'feature_defines': [
90 'ENABLE_GC_PROFILING=1', 89 'ENABLE_GC_PROFILING=1',
91 ], 90 ],
92 }], 91 }],
93 ['blink_logging_always_on==1', { 92 ['blink_logging_always_on==1', {
94 'feature_defines': [ 93 'feature_defines': [
95 'LOG_DISABLED=0', 94 'LOG_DISABLED=0',
96 ], 95 ],
97 }], 96 }],
98 ['link_core_modules_separately==1', {
99 'feature_defines': [
100 'LINK_CORE_MODULES_SEPARATELY',
101 ],
102 }],
103 ], 97 ],
104
105 # shared build only. If set to 1, link web, core and modules separately.
106 'link_core_modules_separately%': '<(link_core_modules_separately)',
107 }, 98 },
108 } 99 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698