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

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: Review comments 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'dynamic_annotations', 8 'target_name': 'dynamic_annotations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'toolsets': ['host', 'target'], 10 'toolsets': ['host', 'target'],
11 'include_dirs': [ 11 'include_dirs': [
12 '../../../', 12 '../../../',
13 ], 13 ],
14 'sources': [ 14 'sources': [
15 'dynamic_annotations.c', 15 'dynamic_annotations.c',
16 'dynamic_annotations.h', 16 'dynamic_annotations.h',
17 '../valgrind/valgrind.h', 17 '../valgrind/valgrind.h',
18 ], 18 ],
19 'includes': [
20 '../../../build/android/increase_size_for_speed.gypi',
21 ],
19 }, 22 },
20 ], 23 ],
21 'conditions': [ 24 'conditions': [
22 ['OS == "win" and target_arch=="ia32"', { 25 ['OS == "win" and target_arch=="ia32"', {
23 'targets': [ 26 'targets': [
24 { 27 {
25 'target_name': 'dynamic_annotations_win64', 28 'target_name': 'dynamic_annotations_win64',
26 'type': 'static_library', 29 'type': 'static_library',
27 # We can't use dynamic_annotations target for win64 build since it is 30 # We can't use dynamic_annotations target for win64 build since it is
28 # a 32-bit library. 31 # a 32-bit library.
29 # TODO(gregoryd): merge with dynamic_annotations when 32 # TODO(gregoryd): merge with dynamic_annotations when
30 # the win32/64 targets are merged. 33 # the win32/64 targets are merged.
31 'include_dirs': [ 34 'include_dirs': [
32 '../../../', 35 '../../../',
33 ], 36 ],
34 'sources': [ 37 'sources': [
35 'dynamic_annotations.c', 38 'dynamic_annotations.c',
36 'dynamic_annotations.h', 39 'dynamic_annotations.h',
37 ], 40 ],
38 'configurations': { 41 'configurations': {
39 'Common_Base': { 42 'Common_Base': {
40 'msvs_target_platform': 'x64', 43 'msvs_target_platform': 'x64',
41 }, 44 },
42 }, 45 },
43 }, 46 },
44 ], 47 ],
45 }], 48 }],
46 ], 49 ],
47 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698