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 '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 # GN version: //cc/blink/cc_blink_unittests | 20 # GN version: //cc/blink/cc_blink_unittests |
9 'target_name': 'cc_blink_unittests', | 21 'target_name': 'cc_blink_unittests', |
10 'type': '<(gtest_target_type)', | 22 'type': '<(gtest_target_type)', |
11 'dependencies': [ | 23 'dependencies': [ |
12 '../../base/base.gyp:test_support_base', | 24 '../../base/base.gyp:test_support_base', |
13 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 25 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
14 '../../skia/skia.gyp:skia', | 26 '../../skia/skia.gyp:skia', |
15 '../../testing/gtest.gyp:gtest', | 27 '../../testing/gtest.gyp:gtest', |
(...skipping 25 matching lines...) Expand all Loading... |
41 'test_suite_name': 'cc_blink_unittests', | 53 'test_suite_name': 'cc_blink_unittests', |
42 }, | 54 }, |
43 'includes': [ '../../build/apk_test.gypi' ], | 55 'includes': [ '../../build/apk_test.gypi' ], |
44 }, | 56 }, |
45 ], | 57 ], |
46 } | 58 } |
47 ] | 59 ] |
48 ], | 60 ], |
49 | 61 |
50 } | 62 } |
OLD | NEW |