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

Side by Side Diff: build/android/optimize_speed_template.gypi

Issue 555373004: Compile specific parts of the Android build with -O2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Backport gpu to the new system 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
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file is meant to be included to optimize a target for speed
6 # rather than for size on Android.
7 # This is used in some carefully tailored targets and is not meant
8 # to be included everywhere. If you want to use it for one target,
pasko 2014/09/16 11:41:33 This procedure looks unusual to me. I would prefer
Fabrice (no longer in Chrome) 2014/09/16 19:17:17 Done.
9 # please reopen the following bug:
10 # crbug.com/411909
11
12 {
13 'configurations': {
14 'Release': {
15 'target_conditions': [
16 ['_toolset=="target"', {
17 'conditions': [
18 ['OS=="android"', {
19 'cflags!': ['-Os'],
20 'cflags': ['-O2'],
pasko 2014/09/16 11:41:33 stupid idea: can we list all "legitimate" uses of
Fabrice (no longer in Chrome) 2014/09/16 19:17:17 I had a quick look but this seems overly complicat
21 }],
22 ],
23 }],
24 ],
25 },
26 },
27 }
OLDNEW
« no previous file with comments | « base/third_party/nspr/BUILD.gn ('k') | cc/BUILD.gn » ('j') | cc/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698