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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 16022003: Base for Ash browser_tests on Win8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 7 years, 6 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 ['exclude', '^browser/media_galleries/'], 358 ['exclude', '^browser/media_galleries/'],
359 ], 359 ],
360 }], 360 }],
361 ['OS=="win"', { 361 ['OS=="win"', {
362 'dependencies': [ 362 'dependencies': [
363 '../ui/snapshot/snapshot.gyp:snapshot_test_support', 363 '../ui/snapshot/snapshot.gyp:snapshot_test_support',
364 ], 364 ],
365 'include_dirs': [ 365 'include_dirs': [
366 '<(DEPTH)/third_party/wtl/include', 366 '<(DEPTH)/third_party/wtl/include',
367 ], 367 ],
368 'conditions': [
369 ['use_aura==1', {
370 'dependencies': [
371 '../win8/win8.gyp:test_support_win8',
372 ],
373 }],
374 ],
368 }], 375 }],
369 ], 376 ],
370 }, 377 },
371 { 378 {
372 'target_name': 'test_support_unit', 379 'target_name': 'test_support_unit',
373 'type': 'static_library', 380 'type': 'static_library',
374 'dependencies': [ 381 'dependencies': [
375 'chrome_resources.gyp:chrome_resources', 382 'chrome_resources.gyp:chrome_resources',
376 'chrome_resources.gyp:chrome_strings', 383 'chrome_resources.gyp:chrome_strings',
377 'browser', 384 'browser',
(...skipping 2154 matching lines...) Expand 10 before | Expand all | Expand 10 after
2532 # more details. 2539 # more details.
2533 'DebugInformationFormat': '3', 2540 'DebugInformationFormat': '3',
2534 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2541 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2535 }, 2542 },
2536 }, 2543 },
2537 }, 2544 },
2538 ], 2545 ],
2539 }], 2546 }],
2540 ], # 'conditions' 2547 ], # 'conditions'
2541 } 2548 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698