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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 815023003: skia: Add 'skia_unittests' test suite for this directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: skia alias Created 5 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
« no previous file with comments | « build/all.gyp ('k') | skia/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 '../apps/saved_files_service_unittest.cc', 7 '../apps/saved_files_service_unittest.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 8 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
9 '../components/autofill/content/renderer/test_password_autofill_agent.h', 9 '../components/autofill/content/renderer/test_password_autofill_agent.h',
10 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 10 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
(...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1413 # TODO(yael): Move to //components/components_tests.gypi once 1413 # TODO(yael): Move to //components/components_tests.gypi once
1414 # nacl_defines is moved out of chrome.gyp into a common place. 1414 # nacl_defines is moved out of chrome.gyp into a common place.
1415 '../components/nacl/loader/nacl_ipc_adapter_unittest.cc', 1415 '../components/nacl/loader/nacl_ipc_adapter_unittest.cc',
1416 '../components/nacl/loader/nacl_validation_query_unittest.cc', 1416 '../components/nacl/loader/nacl_validation_query_unittest.cc',
1417 1417
1418 '../components/search_engines/template_url_fetcher_unittest.cc', 1418 '../components/search_engines/template_url_fetcher_unittest.cc',
1419 '../components/search_engines/template_url_parser_unittest.cc', 1419 '../components/search_engines/template_url_parser_unittest.cc',
1420 '../components/search_engines/template_url_service_sync_unittest.cc', 1420 '../components/search_engines/template_url_service_sync_unittest.cc',
1421 '../components/search_engines/template_url_service_unittest.cc', 1421 '../components/search_engines/template_url_service_unittest.cc',
1422 1422
1423 '../skia/ext/analysis_canvas_unittest.cc',
1424 '../skia/ext/bitmap_platform_device_mac_unittest.cc',
1425 '../skia/ext/convolver_unittest.cc',
1426 '../skia/ext/image_operations_unittest.cc',
1427 '../skia/ext/pixel_ref_utils_unittest.cc',
1428 '../skia/ext/platform_canvas_unittest.cc',
1429 '../skia/ext/recursive_gaussian_convolution_unittest.cc',
1430 '../skia/ext/refptr_unittest.cc',
1431 '../skia/ext/skia_utils_ios_unittest.mm',
1432 '../skia/ext/skia_utils_mac_unittest.mm',
1433 '../skia/ext/vector_canvas_unittest.cc',
1434 '../testing/gtest_mac_unittest.mm', 1423 '../testing/gtest_mac_unittest.mm',
1435 '../third_party/zlib/google/zip_reader_unittest.cc', 1424 '../third_party/zlib/google/zip_reader_unittest.cc',
1436 '../third_party/zlib/google/zip_unittest.cc', 1425 '../third_party/zlib/google/zip_unittest.cc',
1437 '../tools/json_schema_compiler/test/additional_properties_unittest.cc', 1426 '../tools/json_schema_compiler/test/additional_properties_unittest.cc',
1438 '../tools/json_schema_compiler/test/any_unittest.cc', 1427 '../tools/json_schema_compiler/test/any_unittest.cc',
1439 '../tools/json_schema_compiler/test/arrays_unittest.cc', 1428 '../tools/json_schema_compiler/test/arrays_unittest.cc',
1440 '../tools/json_schema_compiler/test/callbacks_unittest.cc', 1429 '../tools/json_schema_compiler/test/callbacks_unittest.cc',
1441 '../tools/json_schema_compiler/test/choices_unittest.cc', 1430 '../tools/json_schema_compiler/test/choices_unittest.cc',
1442 '../tools/json_schema_compiler/test/crossref_unittest.cc', 1431 '../tools/json_schema_compiler/test/crossref_unittest.cc',
1443 '../tools/json_schema_compiler/test/enums_unittest.cc', 1432 '../tools/json_schema_compiler/test/enums_unittest.cc',
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after
2473 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 2462 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
2474 }], 2463 }],
2475 ['OS!="mac" and OS!="ios"', { 2464 ['OS!="mac" and OS!="ios"', {
2476 'dependencies': [ 2465 'dependencies': [
2477 '../third_party/hunspell/hunspell.gyp:hunspell', 2466 '../third_party/hunspell/hunspell.gyp:hunspell',
2478 'chrome_resources.gyp:packed_extra_resources', 2467 'chrome_resources.gyp:packed_extra_resources',
2479 'chrome_resources.gyp:packed_resources', 2468 'chrome_resources.gyp:packed_resources',
2480 'tools/convert_dict/convert_dict.gyp:convert_dict_lib', 2469 'tools/convert_dict/convert_dict.gyp:convert_dict_lib',
2481 ], 2470 ],
2482 }], 2471 }],
2483 ['OS!="win" and OS!="mac"', {
2484 'sources!': [
2485 '../skia/ext/platform_canvas_unittest.cc',
2486 ],
2487 }],
2488 ['OS=="win" or OS=="mac"', { 2472 ['OS=="win" or OS=="mac"', {
2489 'sources': [ 2473 'sources': [
2490 'browser/media_galleries/fileapi/itunes_file_util_unittest.cc', 2474 'browser/media_galleries/fileapi/itunes_file_util_unittest.cc',
2491 'browser/media_galleries/fileapi/picasa_file_util_unittest.cc', 2475 'browser/media_galleries/fileapi/picasa_file_util_unittest.cc',
2492 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc', 2476 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
2493 'utility/media_galleries/itunes_library_parser_unittest.cc', 2477 'utility/media_galleries/itunes_library_parser_unittest.cc',
2494 'utility/media_galleries/picasa_album_table_reader_unittest.cc', 2478 'utility/media_galleries/picasa_album_table_reader_unittest.cc',
2495 'utility/media_galleries/picasa_albums_indexer_unittest.cc', 2479 'utility/media_galleries/picasa_albums_indexer_unittest.cc',
2496 'utility/media_galleries/pmp_column_reader_unittest.cc', 2480 'utility/media_galleries/pmp_column_reader_unittest.cc',
2497 ], 2481 ],
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
2556 '-lurlmon.lib', 2540 '-lurlmon.lib',
2557 '-lwinmm.lib', 2541 '-lwinmm.lib',
2558 ], 2542 ],
2559 }, 2543 },
2560 }, { # else: OS != "win" 2544 }, { # else: OS != "win"
2561 'sources!': [ 2545 'sources!': [
2562 'app/chrome_dll.rc', 2546 'app/chrome_dll.rc',
2563 'browser/search_engines/template_url_scraper_unittest.cc', 2547 'browser/search_engines/template_url_scraper_unittest.cc',
2564 'browser/ui/views/extensions/browser_action_drag_data_unittest.cc', 2548 'browser/ui/views/extensions/browser_action_drag_data_unittest.cc',
2565 'test/data/resource.rc', 2549 'test/data/resource.rc',
2566 '../skia/ext/vector_canvas_unittest.cc',
2567 ], 2550 ],
2568 }], 2551 }],
2569 ['OS=="android" or OS=="ios"', { 2552 ['OS=="android" or OS=="ios"', {
2570 'sources!': [ 2553 'sources!': [
2571 'browser/devtools/device/webrtc/devtools_bridge_instances_request_un ittest.cc', 2554 'browser/devtools/device/webrtc/devtools_bridge_instances_request_un ittest.cc',
2572 'browser/ui/sync/sync_promo_ui_unittest.cc', 2555 'browser/ui/sync/sync_promo_ui_unittest.cc',
2573 ], 2556 ],
2574 }, { # 'OS!="android" and OS!="ios"' 2557 }, { # 'OS!="android" and OS!="ios"'
2575 'dependencies': [ 2558 'dependencies': [
2576 'tools/profile_reset/jtl_compiler.gyp:jtl_compiler_lib', 2559 'tools/profile_reset/jtl_compiler.gyp:jtl_compiler_lib',
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
2956 'dependencies': [ 2939 'dependencies': [
2957 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2940 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2958 ], 2941 ],
2959 }], 2942 }],
2960 ], 2943 ],
2961 }, 2944 },
2962 ], 2945 ],
2963 }], 2946 }],
2964 ], # 'conditions' 2947 ], # 'conditions'
2965 } 2948 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698