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

Side by Side Diff: cc/cc.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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'target_defaults': {
10 'configurations': {
11 'Release': {
12 'conditions': [
13 ['OS=="android"', {
14 'cflags!': ['-Os'],
15 'cflags': ['-O2'],
16 }],
17 ],
18 },
19 },
20 },
9 'targets': [ 21 'targets': [
10 { 22 {
11 # GN version: //cc 23 # GN version: //cc
12 'target_name': 'cc', 24 'target_name': 'cc',
13 'type': '<(component)', 25 'type': '<(component)',
14 'dependencies': [ 26 'dependencies': [
15 '<(DEPTH)/base/base.gyp:base', 27 '<(DEPTH)/base/base.gyp:base',
16 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 28 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
17 '<(DEPTH)/gpu/gpu.gyp:gpu', 29 '<(DEPTH)/gpu/gpu.gyp:gpu',
18 '<(DEPTH)/media/media.gyp:media', 30 '<(DEPTH)/media/media.gyp:media',
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
531 'surfaces/surface_id_allocator.h', 543 'surfaces/surface_id_allocator.h',
532 'surfaces/surface_manager.cc', 544 'surfaces/surface_manager.cc',
533 'surfaces/surface_manager.h', 545 'surfaces/surface_manager.h',
534 'surfaces/surface_resource_holder.cc', 546 'surfaces/surface_resource_holder.cc',
535 'surfaces/surface_resource_holder.h', 547 'surfaces/surface_resource_holder.h',
536 'surfaces/surfaces_export.h', 548 'surfaces/surfaces_export.h',
537 ], 549 ],
538 }, 550 },
539 ], 551 ],
540 } 552 }
OLDNEW
« cc/blink/cc_blink.gyp ('K') | « cc/blink/cc_blink_tests.gyp ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698