OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 'conditions': [ | 646 'conditions': [ |
647 ['branding=="Chrome"', { | 647 ['branding=="Chrome"', { |
648 'defines': ['GOOGLE_CHROME_BUILD'], | 648 'defines': ['GOOGLE_CHROME_BUILD'], |
649 }, { # else: branding!="Chrome" | 649 }, { # else: branding!="Chrome" |
650 'defines': ['CHROMIUM_BUILD'], | 650 'defines': ['CHROMIUM_BUILD'], |
651 }], | 651 }], |
652 ['toolkit_views==1', { | 652 ['toolkit_views==1', { |
653 'defines': ['TOOLKIT_VIEWS=1'], | 653 'defines': ['TOOLKIT_VIEWS=1'], |
654 }], | 654 }], |
655 ['views_compositor==1', { | 655 ['views_compositor==1', { |
656 # TODO(sky): nuke COMPOSITOR_2 when we remove it from views. | 656 'defines': ['VIEWS_COMPOSITOR=1'], |
657 'defines': ['VIEWS_COMPOSITOR=1', 'COMPOSITOR_2=1'], | |
658 }], | 657 }], |
659 ['chromeos==1', { | 658 ['chromeos==1', { |
660 'defines': ['OS_CHROMEOS=1'], | 659 'defines': ['OS_CHROMEOS=1'], |
661 }], | 660 }], |
662 ['touchui==1', { | 661 ['touchui==1', { |
663 'defines': ['TOUCH_UI=1'], | 662 'defines': ['TOUCH_UI=1'], |
664 }], | 663 }], |
665 ['file_manager_extension==1', { | 664 ['file_manager_extension==1', { |
666 'defines': ['FILE_MANAGER_EXTENSION=1'], | 665 'defines': ['FILE_MANAGER_EXTENSION=1'], |
667 }], | 666 }], |
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1760 # and therefore SYMROOT, needs to be set at the project level. | 1759 # and therefore SYMROOT, needs to be set at the project level. |
1761 'SYMROOT': '<(DEPTH)/xcodebuild', | 1760 'SYMROOT': '<(DEPTH)/xcodebuild', |
1762 }, | 1761 }, |
1763 } | 1762 } |
1764 | 1763 |
1765 # Local Variables: | 1764 # Local Variables: |
1766 # tab-width:2 | 1765 # tab-width:2 |
1767 # indent-tabs-mode:nil | 1766 # indent-tabs-mode:nil |
1768 # End: | 1767 # End: |
1769 # vim: set expandtab tabstop=2 shiftwidth=2: | 1768 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |