| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'python_flags': '<(DEPTH)/third_party/cython/python_flags.py', | 7 'python_flags': '<(DEPTH)/third_party/cython/python_flags.py', |
| 8 }, | 8 }, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['OS=="mac"', { | 10 ['OS=="mac"', { |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ], | 53 ], |
| 54 'cflags': [ | 54 'cflags': [ |
| 55 '-Wno-unused-function', | 55 '-Wno-unused-function', |
| 56 ], | 56 ], |
| 57 'xcode_settings': { | 57 'xcode_settings': { |
| 58 'WARNING_CFLAGS': [ '-Wno-unused-function' ], | 58 'WARNING_CFLAGS': [ '-Wno-unused-function' ], |
| 59 }, | 59 }, |
| 60 'library_dirs': [ | 60 'library_dirs': [ |
| 61 '<!@(python <(python_flags) --library_dirs)', | 61 '<!@(python <(python_flags) --library_dirs)', |
| 62 ], | 62 ], |
| 63 'direct_dependent_settings': { | |
| 64 'variables': { | |
| 65 'python_binary_modules': [ | |
| 66 '<(python_cython_module)<(module_suffix)=<(module_prefix)<(_target_name)
<(module_suffix)', | |
| 67 ], | |
| 68 }, | |
| 69 }, | |
| 70 'hard_dependency': 1, | 63 'hard_dependency': 1, |
| 71 } | 64 } |
| OLD | NEW |