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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/common_untrusted.gypi', | 10 '../build/common_untrusted.gypi', |
(...skipping 16 matching lines...) Expand all Loading... |
27 'base_switches.cc', | 27 'base_switches.cc', |
28 'base_switches.h', | 28 'base_switches.h', |
29 'strings/string16.cc', | 29 'strings/string16.cc', |
30 'sync_socket_nacl.cc', | 30 'sync_socket_nacl.cc', |
31 'time/time_posix.cc', | 31 'time/time_posix.cc', |
32 ], | 32 ], |
33 }, | 33 }, |
34 'dependencies': [ | 34 'dependencies': [ |
35 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | 35 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', |
36 ], | 36 ], |
| 37 'conditions': [ |
| 38 ['use_libcxx==1',{ |
| 39 'dependencies!': [ |
| 40 '<(DEPTH)/third_party/libc++/libc++.gyp:libc++', |
| 41 '<(DEPTH)/third_party/libc++abi/libc++abi.gyp:libc++abi', |
| 42 ], |
| 43 }], |
| 44 ], |
37 }, | 45 }, |
38 ], | 46 ], |
39 }], | 47 }], |
40 ], | 48 ], |
41 } | 49 } |
OLD | NEW |