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 { | 5 { |
| 6 'target_defaults': { |
| 7 'configurations': { |
| 8 'Release': { |
| 9 'conditions': [ |
| 10 ['OS=="android"', { |
| 11 'cflags!': ['-Os'], |
| 12 'cflags': ['-O2'], |
| 13 }], |
| 14 ], |
| 15 }, |
| 16 }, |
| 17 }, |
6 'targets': [ | 18 'targets': [ |
7 { | 19 { |
8 'target_name': 'dynamic_annotations', | 20 'target_name': 'dynamic_annotations', |
9 'type': 'static_library', | 21 'type': 'static_library', |
10 'toolsets': ['host', 'target'], | 22 'toolsets': ['host', 'target'], |
11 'include_dirs': [ | 23 'include_dirs': [ |
12 '../../../', | 24 '../../../', |
13 ], | 25 ], |
14 'sources': [ | 26 'sources': [ |
15 'dynamic_annotations.c', | 27 'dynamic_annotations.c', |
(...skipping 22 matching lines...) Expand all Loading... |
38 'configurations': { | 50 'configurations': { |
39 'Common_Base': { | 51 'Common_Base': { |
40 'msvs_target_platform': 'x64', | 52 'msvs_target_platform': 'x64', |
41 }, | 53 }, |
42 }, | 54 }, |
43 }, | 55 }, |
44 ], | 56 ], |
45 }], | 57 }], |
46 ], | 58 ], |
47 } | 59 } |
OLD | NEW |