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 2645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2656 # things when their commandline changes). Nothing should ever read this | 2656 # things when their commandline changes). Nothing should ever read this |
2657 # define. | 2657 # define. |
2658 'defines': ['CR_CLANG_REVISION=<!(python <(DEPTH)/tools/clang/scripts/up
date.py --print-revision)'], | 2658 'defines': ['CR_CLANG_REVISION=<!(python <(DEPTH)/tools/clang/scripts/up
date.py --print-revision)'], |
2659 }], | 2659 }], |
2660 ['enable_rlz==1', { | 2660 ['enable_rlz==1', { |
2661 'defines': ['ENABLE_RLZ'], | 2661 'defines': ['ENABLE_RLZ'], |
2662 }], | 2662 }], |
2663 ['component=="shared_library"', { | 2663 ['component=="shared_library"', { |
2664 'defines': ['COMPONENT_BUILD'], | 2664 'defines': ['COMPONENT_BUILD'], |
2665 }], | 2665 }], |
| 2666 ['toolkit_views==1', { |
| 2667 'defines': ['TOOLKIT_VIEWS=1'], |
| 2668 }], |
2666 ['ui_compositor_image_transport==1', { | 2669 ['ui_compositor_image_transport==1', { |
2667 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'], | 2670 'defines': ['UI_COMPOSITOR_IMAGE_TRANSPORT'], |
2668 }], | 2671 }], |
2669 ['use_aura==1', { | 2672 ['use_aura==1', { |
2670 'defines': ['USE_AURA=1'], | 2673 'defines': ['USE_AURA=1'], |
2671 }], | 2674 }], |
2672 ['use_ash==1', { | 2675 ['use_ash==1', { |
2673 'defines': ['USE_ASH=1'], | 2676 'defines': ['USE_ASH=1'], |
2674 }], | 2677 }], |
2675 ['use_pango==1', { | 2678 ['use_pango==1', { |
(...skipping 3518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6194 # settings in target dicts. SYMROOT is a special case, because many other | 6197 # settings in target dicts. SYMROOT is a special case, because many other |
6195 # Xcode variables depend on it, including variables such as | 6198 # Xcode variables depend on it, including variables such as |
6196 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6199 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6197 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6200 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6198 # files to appear (when present) in the UI as actual files and not red | 6201 # files to appear (when present) in the UI as actual files and not red |
6199 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6202 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6200 # and therefore SYMROOT, needs to be set at the project level. | 6203 # and therefore SYMROOT, needs to be set at the project level. |
6201 'SYMROOT': '<(DEPTH)/xcodebuild', | 6204 'SYMROOT': '<(DEPTH)/xcodebuild', |
6202 }, | 6205 }, |
6203 } | 6206 } |
OLD | NEW |