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

Side by Side Diff: base/android/jni_generator/jni_generator.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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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': 'jni_generator_py_tests', 20 'target_name': 'jni_generator_py_tests',
9 'type': 'none', 21 'type': 'none',
10 'actions': [ 22 'actions': [
11 { 23 {
12 'action_name': 'run_jni_generator_py_tests', 24 'action_name': 'run_jni_generator_py_tests',
13 'inputs': [ 25 'inputs': [
14 'jni_generator.py', 26 'jni_generator.py',
15 'jni_generator_tests.py', 27 'jni_generator_tests.py',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'jni_generator_py_tests', 67 'jni_generator_py_tests',
56 'jni_sample_header', 68 'jni_sample_header',
57 'jni_sample_java', 69 'jni_sample_java',
58 ], 70 ],
59 'sources': [ 71 'sources': [
60 'sample_for_tests.cc', 72 'sample_for_tests.cc',
61 ], 73 ],
62 }, 74 },
63 ], 75 ],
64 } 76 }
OLDNEW
« no previous file with comments | « base/allocator/allocator.gyp ('k') | base/base.gypi » ('j') | cc/blink/cc_blink.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698