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

Side by Side Diff: cc/cc_tests.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 'cc_unit_tests_source_files': [ 8 'cc_unit_tests_source_files': [
9 'animation/animation_unittest.cc', 9 'animation/animation_unittest.cc',
10 'animation/keyframed_animation_curve_unittest.cc', 10 'animation/keyframed_animation_curve_unittest.cc',
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'test/test_texture.cc', 240 'test/test_texture.cc',
241 'test/test_texture.h', 241 'test/test_texture.h',
242 'test/test_tile_priorities.cc', 242 'test/test_tile_priorities.cc',
243 'test/test_tile_priorities.h', 243 'test/test_tile_priorities.h',
244 'test/test_web_graphics_context_3d.cc', 244 'test/test_web_graphics_context_3d.cc',
245 'test/test_web_graphics_context_3d.h', 245 'test/test_web_graphics_context_3d.h',
246 'test/tiled_layer_test_common.cc', 246 'test/tiled_layer_test_common.cc',
247 'test/tiled_layer_test_common.h', 247 'test/tiled_layer_test_common.h',
248 ], 248 ],
249 }, 249 },
250 'target_defaults': {
251 'configurations': {
252 'Release': {
253 'conditions': [
254 ['OS=="android"', {
255 'cflags!': ['-Os'],
256 'cflags': ['-O2'],
257 }],
258 ],
259 },
260 },
261 },
250 'targets': [ 262 'targets': [
251 { 263 {
252 'target_name': 'cc_unittests', 264 'target_name': 'cc_unittests',
253 'type': '<(gtest_target_type)', 265 'type': '<(gtest_target_type)',
254 'dependencies': [ 266 'dependencies': [
255 '../base/base.gyp:test_support_base', 267 '../base/base.gyp:test_support_base',
256 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 268 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
257 '../gpu/gpu.gyp:gpu', 269 '../gpu/gpu.gyp:gpu',
258 '../gpu/gpu.gyp:gpu_unittest_utils', 270 '../gpu/gpu.gyp:gpu_unittest_utils',
259 '../media/media.gyp:media', 271 '../media/media.gyp:media',
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 'variables': { 429 'variables': {
418 'test_suite_name': 'cc_perftests', 430 'test_suite_name': 'cc_perftests',
419 }, 431 },
420 'includes': [ '../build/apk_test.gypi' ], 432 'includes': [ '../build/apk_test.gypi' ],
421 }, 433 },
422 ], 434 ],
423 } 435 }
424 ] 436 ]
425 ], 437 ],
426 } 438 }
OLDNEW
« cc/blink/cc_blink.gyp ('K') | « cc/cc.gyp ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698