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 2589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2600 'cflags!': [ | 2600 'cflags!': [ |
2601 # Clang does not support the following options. | 2601 # Clang does not support the following options. |
2602 '-mthumb-interwork', | 2602 '-mthumb-interwork', |
2603 '-finline-limit=64', | 2603 '-finline-limit=64', |
2604 '-fno-tree-sra', | 2604 '-fno-tree-sra', |
2605 '-fuse-ld=gold', | 2605 '-fuse-ld=gold', |
2606 '-Wno-psabi', | 2606 '-Wno-psabi', |
2607 ], | 2607 ], |
2608 }], | 2608 }], |
2609 ], | 2609 ], |
2610 'target_conditions': [ | |
2611 # ndk-build copies .a's around the filesystem, breaking | |
2612 # relative paths in thin archives. Disable using thin | |
2613 # archives to avoid problems. | |
digit1
2012/11/23 15:56:05
I guess you're trying to use the static libraries
Nico
2012/11/23 19:17:13
Can you add links to the bugs digit filed? This so
Ami GONE FROM CHROMIUM
2012/11/23 19:40:51
Done.
| |
2614 ['_type=="static_library"', { | |
2615 'standalone_static_library': 1, | |
2616 }], | |
2617 ], | |
2610 }], | 2618 }], |
2611 ], | 2619 ], |
2612 }], | 2620 }], |
2613 ], | 2621 ], |
2614 }], | 2622 }], |
2615 ['linux_fpic==1', { | 2623 ['linux_fpic==1', { |
2616 'cflags': [ | 2624 'cflags': [ |
2617 '-fPIC', | 2625 '-fPIC', |
2618 ], | 2626 ], |
2619 'ldflags': [ | 2627 'ldflags': [ |
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3863 # settings in target dicts. SYMROOT is a special case, because many other | 3871 # settings in target dicts. SYMROOT is a special case, because many other |
3864 # Xcode variables depend on it, including variables such as | 3872 # Xcode variables depend on it, including variables such as |
3865 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3873 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
3866 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3874 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
3867 # files to appear (when present) in the UI as actual files and not red | 3875 # files to appear (when present) in the UI as actual files and not red |
3868 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3876 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
3869 # and therefore SYMROOT, needs to be set at the project level. | 3877 # and therefore SYMROOT, needs to be set at the project level. |
3870 'SYMROOT': '<(DEPTH)/xcodebuild', | 3878 'SYMROOT': '<(DEPTH)/xcodebuild', |
3871 }, | 3879 }, |
3872 } | 3880 } |
OLD | NEW |