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 4894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4905 ], | 4905 ], |
4906 }], | 4906 }], |
4907 ['target_arch=="ia32"', { | 4907 ['target_arch=="ia32"', { |
4908 'cflags': [ | 4908 'cflags': [ |
4909 '-target i686-linux-androideabi', | 4909 '-target i686-linux-androideabi', |
4910 ], | 4910 ], |
4911 'ldflags': [ | 4911 'ldflags': [ |
4912 '-target i686-linux-androideabi', | 4912 '-target i686-linux-androideabi', |
4913 ], | 4913 ], |
4914 }], | 4914 }], |
| 4915 # Place holder for arm64 support, not tested. |
| 4916 # TODO: Enable clang support for Android Arm64. http://crbug.c
om/539781 |
| 4917 ['target_arch=="arm64"', { |
| 4918 'cflags': [ |
| 4919 '-target aarch64-linux-androideabi', |
| 4920 ], |
| 4921 'ldflags': [ |
| 4922 '-target aarch64-linux-androideabi', |
| 4923 ], |
| 4924 }], |
4915 # Place holder for x64 support, not tested. | 4925 # Place holder for x64 support, not tested. |
4916 # TODO: Enable clang support for Android x64. http://crbug.com
/346626 | 4926 # TODO: Enable clang support for Android x64. http://crbug.com
/539781 |
4917 ['target_arch=="x64"', { | 4927 ['target_arch=="x64"', { |
4918 'cflags': [ | 4928 'cflags': [ |
4919 '-target x86_64-linux-androideabi', | 4929 '-target x86_64-linux-androideabi', |
4920 ], | 4930 ], |
4921 'ldflags': [ | 4931 'ldflags': [ |
4922 '-target x86_64-linux-androideabi', | 4932 '-target x86_64-linux-androideabi', |
4923 ], | 4933 ], |
4924 }], | 4934 }], |
4925 ], | 4935 ], |
4926 }], | 4936 }], |
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6277 # settings in target dicts. SYMROOT is a special case, because many other | 6287 # settings in target dicts. SYMROOT is a special case, because many other |
6278 # Xcode variables depend on it, including variables such as | 6288 # Xcode variables depend on it, including variables such as |
6279 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6289 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6280 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6290 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6281 # files to appear (when present) in the UI as actual files and not red | 6291 # files to appear (when present) in the UI as actual files and not red |
6282 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6292 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6283 # and therefore SYMROOT, needs to be set at the project level. | 6293 # and therefore SYMROOT, needs to be set at the project level. |
6284 'SYMROOT': '<(DEPTH)/xcodebuild', | 6294 'SYMROOT': '<(DEPTH)/xcodebuild', |
6285 }, | 6295 }, |
6286 } | 6296 } |
OLD | NEW |