Revert of Enabling audio quality test on mac. (patchset #1 id:1 of https://codereview...
[chromium-blink-merge.git] / build / android / increase_size_for_speed.gypi
blobf5f2d6263322bd53270e1bc38348619e800113dc
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.
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. Before adding the template to another target,
9 # please ask in chromium-dev@. See crbug.com/411909
12   'configurations': {
13     'Release': {
14       'target_conditions': [
15         ['_toolset=="target"', {
16           'conditions': [
17             ['OS=="android"', {
18               'cflags!': ['-Os'],
19               'cflags': ['-O2'],
20             }],
21           ],
22         }],
23       ],
24     },
25   },