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': { | |
Sami
2014/09/10 12:44:56
Any idea how big the perf improvements are in cc_b
Fabrice (no longer in Chrome)
2014/09/10 14:51:12
Done.
After testing it seems to have no effect and
| |
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 | 20 # GN version: //cc/blink |
9 'target_name': 'cc_blink', | 21 'target_name': 'cc_blink', |
10 'type': '<(component)', | 22 'type': '<(component)', |
11 'dependencies': [ | 23 'dependencies': [ |
12 '../../gpu/gpu.gyp:command_buffer_common', | 24 '../../gpu/gpu.gyp:command_buffer_common', |
13 '../../base/base.gyp:base', | 25 '../../base/base.gyp:base', |
14 '../../third_party/WebKit/public/blink.gyp:blink', | 26 '../../third_party/WebKit/public/blink.gyp:blink', |
15 '../../skia/skia.gyp:skia', | 27 '../../skia/skia.gyp:skia', |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
61 'web_to_cc_animation_delegate_adapter.cc', | 73 'web_to_cc_animation_delegate_adapter.cc', |
62 'web_to_cc_animation_delegate_adapter.h', | 74 'web_to_cc_animation_delegate_adapter.h', |
63 'web_transform_animation_curve_impl.cc', | 75 'web_transform_animation_curve_impl.cc', |
64 'web_transform_animation_curve_impl.h', | 76 'web_transform_animation_curve_impl.h', |
65 'web_transform_operations_impl.cc', | 77 'web_transform_operations_impl.cc', |
66 'web_transform_operations_impl.h', | 78 'web_transform_operations_impl.h', |
67 ], | 79 ], |
68 }, | 80 }, |
69 ] | 81 ] |
70 } | 82 } |
OLD | NEW |