Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: cc/blink/cc_blink.gyp

Issue 555373004: Compile specific parts of the Android build with -O2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « base/third_party/dynamic_annotations/dynamic_annotations.gyp ('k') | cc/blink/cc_blink_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698