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 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 }, { # else: branding!="Chrome" | 550 }, { # else: branding!="Chrome" |
551 'mac_product_name%': 'Chromium', | 551 'mac_product_name%': 'Chromium', |
552 }], | 552 }], |
553 | 553 |
554 # Feature variables for enabling Mac Breakpad and Keystone auto-update | 554 # Feature variables for enabling Mac Breakpad and Keystone auto-update |
555 # support. Both features are on by default in official builds with | 555 # support. Both features are on by default in official builds with |
556 # Chrome branding. | 556 # Chrome branding. |
557 ['branding=="Chrome" and buildtype=="Official"', { | 557 ['branding=="Chrome" and buildtype=="Official"', { |
558 'mac_breakpad%': 1, | 558 'mac_breakpad%': 1, |
559 'mac_keystone%': 1, | 559 'mac_keystone%': 1, |
| 560 |
| 561 # Official builds use clang, but only on m15+. Since there's just |
| 562 # one buildbot config for the builder for m13, m14, and m15, this |
| 563 # can't be defined in the buildbot config but is instead defined |
| 564 # here (it was added after the m14 branch was cut). This is in the |
| 565 # buildtype=="Official" section so that developers don't see it |
| 566 # for their local builds. |
| 567 'clang%': 1, |
560 }, { # else: branding!="Chrome" or buildtype!="Official" | 568 }, { # else: branding!="Chrome" or buildtype!="Official" |
561 'mac_breakpad%': 0, | 569 'mac_breakpad%': 0, |
562 'mac_keystone%': 0, | 570 'mac_keystone%': 0, |
563 }], | 571 }], |
564 ], | 572 ], |
565 }], # OS=="mac" | 573 }], # OS=="mac" |
566 | 574 |
567 # Whether to use multiple cores to compile with visual studio. This is | 575 # Whether to use multiple cores to compile with visual studio. This is |
568 # optional because it sometimes causes corruption on VS 2005. | 576 # optional because it sometimes causes corruption on VS 2005. |
569 # It is on by default on VS 2008 and off on VS 2005. | 577 # It is on by default on VS 2008 and off on VS 2005. |
(...skipping 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1934 # settings in target dicts. SYMROOT is a special case, because many other | 1942 # settings in target dicts. SYMROOT is a special case, because many other |
1935 # Xcode variables depend on it, including variables such as | 1943 # Xcode variables depend on it, including variables such as |
1936 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1944 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
1937 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1945 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
1938 # files to appear (when present) in the UI as actual files and not red | 1946 # files to appear (when present) in the UI as actual files and not red |
1939 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1947 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
1940 # and therefore SYMROOT, needs to be set at the project level. | 1948 # and therefore SYMROOT, needs to be set at the project level. |
1941 'SYMROOT': '<(DEPTH)/xcodebuild', | 1949 'SYMROOT': '<(DEPTH)/xcodebuild', |
1942 }, | 1950 }, |
1943 } | 1951 } |
OLD | NEW |