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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 9193024: [Mac] Add a perf test that counts the number of Mach ports in the browser. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 | Annotate | Revision Log
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 'variables' : { 5 'variables' : {
6 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 3483 matching lines...) Expand 10 before | Expand all | Expand 10 after
3494 }, 3494 },
3495 }, 3495 },
3496 }, 3496 },
3497 }], 3497 }],
3498 ['OS=="mac"', { 3498 ['OS=="mac"', {
3499 # See the comment in this section of the unit_tests target for an 3499 # See the comment in this section of the unit_tests target for an
3500 # explanation (crbug.com/43791 - libwebcore.a is too large to mmap). 3500 # explanation (crbug.com/43791 - libwebcore.a is too large to mmap).
3501 'dependencies+++': [ 3501 'dependencies+++': [
3502 '../third_party/WebKit/Source/WebCore/WebCore.gyp/WebCore.gyp:webcor e', 3502 '../third_party/WebKit/Source/WebCore/WebCore.gyp/WebCore.gyp:webcor e',
3503 ], 3503 ],
3504 'sources': [
3505 'test/perf/mach_ports_test.cc',
3506 ],
3504 }], 3507 }],
3505 ['toolkit_uses_gtk == 1', { 3508 ['toolkit_uses_gtk == 1', {
3506 'dependencies': [ 3509 'dependencies': [
3507 '../build/linux/system.gyp:gtk', 3510 '../build/linux/system.gyp:gtk',
3508 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3511 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3509 ], 3512 ],
3510 }], 3513 }],
3511 ['os_posix == 1 and OS != "mac"', { 3514 ['os_posix == 1 and OS != "mac"', {
3512 'conditions': [ 3515 'conditions': [
3513 ['linux_use_tcmalloc==1', { 3516 ['linux_use_tcmalloc==1', {
(...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after
4605 # Use outputs of this action as inputs for the main target build. 4608 # Use outputs of this action as inputs for the main target build.
4606 # Seems as a misnomer but makes this happy on Linux (scons). 4609 # Seems as a misnomer but makes this happy on Linux (scons).
4607 'process_outputs_as_sources': 1, 4610 'process_outputs_as_sources': 1,
4608 }, 4611 },
4609 ], # 'actions' 4612 ], # 'actions'
4610 }, 4613 },
4611 ] 4614 ]
4612 }], # 'coverage!=0' 4615 }], # 'coverage!=0'
4613 ], # 'conditions' 4616 ], # 'conditions'
4614 } 4617 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698