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

Side by Side Diff: base/third_party/dynamic_annotations/dynamic_annotations.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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'target_name': 'dynamic_annotations', 20 'target_name': 'dynamic_annotations',
9 'type': 'static_library', 21 'type': 'static_library',
10 'toolsets': ['host', 'target'], 22 'toolsets': ['host', 'target'],
11 'include_dirs': [ 23 'include_dirs': [
12 '../../../', 24 '../../../',
13 ], 25 ],
14 'sources': [ 26 'sources': [
15 'dynamic_annotations.c', 27 'dynamic_annotations.c',
(...skipping 22 matching lines...) Expand all
38 'configurations': { 50 'configurations': {
39 'Common_Base': { 51 'Common_Base': {
40 'msvs_target_platform': 'x64', 52 'msvs_target_platform': 'x64',
41 }, 53 },
42 }, 54 },
43 }, 55 },
44 ], 56 ],
45 }], 57 }],
46 ], 58 ],
47 } 59 }
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | cc/blink/cc_blink.gyp » ('j') | cc/blink/cc_blink.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698