| OLD | NEW | 
|     1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |     1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
|     2 # Use of this source code is governed by a BSD-style license that can be |     2 # Use of this source code is governed by a BSD-style license that can be | 
|     3 # found in the LICENSE file. |     3 # found in the LICENSE file. | 
|     4  |     4  | 
|     5 # IMPORTANT: |     5 # IMPORTANT: | 
|     6 # Please don't directly include this file if you are building via gyp_chromium, |     6 # Please don't directly include this file if you are building via gyp_chromium, | 
|     7 # since gyp_chromium is automatically forcing its inclusion. |     7 # since gyp_chromium is automatically forcing its inclusion. | 
|     8 { |     8 { | 
|     9   # Variables expected to be overriden on the GYP command line (-D) or by |     9   # Variables expected to be overriden on the GYP command line (-D) or by | 
|    10   # ~/.gyp/include.gypi. |    10   # ~/.gyp/include.gypi. | 
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   864         }, { |   864         }, { | 
|   865           'v8_optimized_debug%': 2, |   865           'v8_optimized_debug%': 2, | 
|   866         }], |   866         }], | 
|   867  |   867  | 
|   868         # Disable various features by default on embedded. |   868         # Disable various features by default on embedded. | 
|   869         ['embedded==1', { |   869         ['embedded==1', { | 
|   870           'remoting%': 0, |   870           'remoting%': 0, | 
|   871           'enable_printing%': 0, |   871           'enable_printing%': 0, | 
|   872         }], |   872         }], | 
|   873  |   873  | 
|   874         ['OS=="win" or OS=="mac" or (OS=="linux" and chromeos==0)', { |   874         ['OS=="win" or (OS=="linux" and chromeos==0)', { | 
|   875           'use_mojo%': 1, |   875           'use_mojo%': 1, | 
|   876         }], |   876         }], | 
|   877  |   877  | 
|   878         # By default, use ICU data file (icudtl.dat) on all platforms |   878         # By default, use ICU data file (icudtl.dat) on all platforms | 
|   879         # except when building Android WebView. |   879         # except when building Android WebView. | 
|   880         # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). |   880         # TODO(jshin): Handle 'use_system_icu' on Linux (Chromium). | 
|   881         ['android_webview_build==0', { |   881         ['android_webview_build==0', { | 
|   882           'icu_use_data_file_flag%' : 1, |   882           'icu_use_data_file_flag%' : 1, | 
|   883         }, { |   883         }, { | 
|   884           'icu_use_data_file_flag%' : 0, |   884           'icu_use_data_file_flag%' : 0, | 
| (...skipping 4324 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  5209     # settings in target dicts.  SYMROOT is a special case, because many other |  5209     # settings in target dicts.  SYMROOT is a special case, because many other | 
|  5210     # Xcode variables depend on it, including variables such as |  5210     # Xcode variables depend on it, including variables such as | 
|  5211     # PROJECT_DERIVED_FILE_DIR.  When a source group corresponding to something |  5211     # PROJECT_DERIVED_FILE_DIR.  When a source group corresponding to something | 
|  5212     # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |  5212     # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 
|  5213     # files to appear (when present) in the UI as actual files and not red |  5213     # files to appear (when present) in the UI as actual files and not red | 
|  5214     # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |  5214     # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 
|  5215     # and therefore SYMROOT, needs to be set at the project level. |  5215     # and therefore SYMROOT, needs to be set at the project level. | 
|  5216     'SYMROOT': '<(DEPTH)/xcodebuild', |  5216     'SYMROOT': '<(DEPTH)/xcodebuild', | 
|  5217   }, |  5217   }, | 
|  5218 } |  5218 } | 
| OLD | NEW |