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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 560 |
561 # Official builds use clang, but only on m15+. Since there's just | 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 | 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 | 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 | 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 | 565 # buildtype=="Official" section so that developers don't see it |
566 # for their local builds. | 566 # for their local builds. |
567 'clang%': 1, | 567 # TODO(thakis): Reenable once breakpad issues are sorted out. |
| 568 #'clang%': 1, |
568 }, { # else: branding!="Chrome" or buildtype!="Official" | 569 }, { # else: branding!="Chrome" or buildtype!="Official" |
569 'mac_breakpad%': 0, | 570 'mac_breakpad%': 0, |
570 'mac_keystone%': 0, | 571 'mac_keystone%': 0, |
571 }], | 572 }], |
572 ], | 573 ], |
573 }], # OS=="mac" | 574 }], # OS=="mac" |
574 | 575 |
575 # Whether to use multiple cores to compile with visual studio. This is | 576 # Whether to use multiple cores to compile with visual studio. This is |
576 # optional because it sometimes causes corruption on VS 2005. | 577 # optional because it sometimes causes corruption on VS 2005. |
577 # It is on by default on VS 2008 and off on VS 2005. | 578 # It is on by default on VS 2008 and off on VS 2005. |
(...skipping 1379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1957 # settings in target dicts. SYMROOT is a special case, because many other | 1958 # settings in target dicts. SYMROOT is a special case, because many other |
1958 # Xcode variables depend on it, including variables such as | 1959 # Xcode variables depend on it, including variables such as |
1959 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 1960 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
1960 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 1961 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
1961 # files to appear (when present) in the UI as actual files and not red | 1962 # files to appear (when present) in the UI as actual files and not red |
1962 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 1963 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
1963 # and therefore SYMROOT, needs to be set at the project level. | 1964 # and therefore SYMROOT, needs to be set at the project level. |
1964 'SYMROOT': '<(DEPTH)/xcodebuild', | 1965 'SYMROOT': '<(DEPTH)/xcodebuild', |
1965 }, | 1966 }, |
1966 } | 1967 } |
OLD | NEW |