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

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: fix gn build Created 6 years 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
« build/all.gyp ('K') | « 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 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after
1418 # TODO(yael): Move to //components/components_tests.gypi once 1418 # TODO(yael): Move to //components/components_tests.gypi once
1419 # nacl_defines is moved out of chrome.gyp into a common place. 1419 # nacl_defines is moved out of chrome.gyp into a common place.
1420 '../components/nacl/loader/nacl_ipc_adapter_unittest.cc', 1420 '../components/nacl/loader/nacl_ipc_adapter_unittest.cc',
1421 '../components/nacl/loader/nacl_validation_query_unittest.cc', 1421 '../components/nacl/loader/nacl_validation_query_unittest.cc',
1422 1422
1423 '../components/search_engines/template_url_fetcher_unittest.cc', 1423 '../components/search_engines/template_url_fetcher_unittest.cc',
1424 '../components/search_engines/template_url_parser_unittest.cc', 1424 '../components/search_engines/template_url_parser_unittest.cc',
1425 '../components/search_engines/template_url_service_sync_unittest.cc', 1425 '../components/search_engines/template_url_service_sync_unittest.cc',
1426 '../components/search_engines/template_url_service_unittest.cc', 1426 '../components/search_engines/template_url_service_unittest.cc',
1427 1427
1428 '../skia/ext/analysis_canvas_unittest.cc',
1429 '../skia/ext/bitmap_platform_device_mac_unittest.cc',
1430 '../skia/ext/convolver_unittest.cc',
1431 '../skia/ext/image_operations_unittest.cc',
1432 '../skia/ext/pixel_ref_utils_unittest.cc',
1433 '../skia/ext/platform_canvas_unittest.cc',
1434 '../skia/ext/recursive_gaussian_convolution_unittest.cc',
1435 '../skia/ext/refptr_unittest.cc',
1436 '../skia/ext/skia_utils_ios_unittest.mm',
1437 '../skia/ext/skia_utils_mac_unittest.mm',
1438 '../skia/ext/vector_canvas_unittest.cc',
1439 '../testing/gtest_mac_unittest.mm', 1428 '../testing/gtest_mac_unittest.mm',
1440 '../third_party/zlib/google/zip_reader_unittest.cc', 1429 '../third_party/zlib/google/zip_reader_unittest.cc',
1441 '../third_party/zlib/google/zip_unittest.cc', 1430 '../third_party/zlib/google/zip_unittest.cc',
1442 '../tools/json_schema_compiler/test/additional_properties_unittest.cc', 1431 '../tools/json_schema_compiler/test/additional_properties_unittest.cc',
1443 '../tools/json_schema_compiler/test/any_unittest.cc', 1432 '../tools/json_schema_compiler/test/any_unittest.cc',
1444 '../tools/json_schema_compiler/test/arrays_unittest.cc', 1433 '../tools/json_schema_compiler/test/arrays_unittest.cc',
1445 '../tools/json_schema_compiler/test/callbacks_unittest.cc', 1434 '../tools/json_schema_compiler/test/callbacks_unittest.cc',
1446 '../tools/json_schema_compiler/test/choices_unittest.cc', 1435 '../tools/json_schema_compiler/test/choices_unittest.cc',
1447 '../tools/json_schema_compiler/test/crossref_unittest.cc', 1436 '../tools/json_schema_compiler/test/crossref_unittest.cc',
1448 '../tools/json_schema_compiler/test/enums_unittest.cc', 1437 '../tools/json_schema_compiler/test/enums_unittest.cc',
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after
2477 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 2466 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
2478 }], 2467 }],
2479 ['OS!="mac" and OS!="ios"', { 2468 ['OS!="mac" and OS!="ios"', {
2480 'dependencies': [ 2469 'dependencies': [
2481 '../third_party/hunspell/hunspell.gyp:hunspell', 2470 '../third_party/hunspell/hunspell.gyp:hunspell',
2482 'chrome_resources.gyp:packed_extra_resources', 2471 'chrome_resources.gyp:packed_extra_resources',
2483 'chrome_resources.gyp:packed_resources', 2472 'chrome_resources.gyp:packed_resources',
2484 'tools/convert_dict/convert_dict.gyp:convert_dict_lib', 2473 'tools/convert_dict/convert_dict.gyp:convert_dict_lib',
2485 ], 2474 ],
2486 }], 2475 }],
2487 ['OS!="win" and OS!="mac"', {
2488 'sources!': [
2489 '../skia/ext/platform_canvas_unittest.cc',
2490 ],
2491 }],
2492 ['OS=="win" or OS=="mac"', { 2476 ['OS=="win" or OS=="mac"', {
2493 'sources': [ 2477 'sources': [
2494 'browser/media_galleries/fileapi/itunes_file_util_unittest.cc', 2478 'browser/media_galleries/fileapi/itunes_file_util_unittest.cc',
2495 'browser/media_galleries/fileapi/picasa_file_util_unittest.cc', 2479 'browser/media_galleries/fileapi/picasa_file_util_unittest.cc',
2496 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc', 2480 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
2497 'utility/media_galleries/itunes_library_parser_unittest.cc', 2481 'utility/media_galleries/itunes_library_parser_unittest.cc',
2498 'utility/media_galleries/picasa_album_table_reader_unittest.cc', 2482 'utility/media_galleries/picasa_album_table_reader_unittest.cc',
2499 'utility/media_galleries/picasa_albums_indexer_unittest.cc', 2483 'utility/media_galleries/picasa_albums_indexer_unittest.cc',
2500 'utility/media_galleries/pmp_column_reader_unittest.cc', 2484 'utility/media_galleries/pmp_column_reader_unittest.cc',
2501 ], 2485 ],
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
2560 '-lurlmon.lib', 2544 '-lurlmon.lib',
2561 '-lwinmm.lib', 2545 '-lwinmm.lib',
2562 ], 2546 ],
2563 }, 2547 },
2564 }, { # else: OS != "win" 2548 }, { # else: OS != "win"
2565 'sources!': [ 2549 'sources!': [
2566 'app/chrome_dll.rc', 2550 'app/chrome_dll.rc',
2567 'browser/search_engines/template_url_scraper_unittest.cc', 2551 'browser/search_engines/template_url_scraper_unittest.cc',
2568 'browser/ui/views/extensions/browser_action_drag_data_unittest.cc', 2552 'browser/ui/views/extensions/browser_action_drag_data_unittest.cc',
2569 'test/data/resource.rc', 2553 'test/data/resource.rc',
2570 '../skia/ext/vector_canvas_unittest.cc',
2571 ], 2554 ],
2572 }], 2555 }],
2573 ['OS=="android" or OS=="ios"', { 2556 ['OS=="android" or OS=="ios"', {
2574 'sources!': [ 2557 'sources!': [
2575 'browser/devtools/device/webrtc/devtools_bridge_instances_request_un ittest.cc', 2558 'browser/devtools/device/webrtc/devtools_bridge_instances_request_un ittest.cc',
2576 'browser/ui/sync/sync_promo_ui_unittest.cc', 2559 'browser/ui/sync/sync_promo_ui_unittest.cc',
2577 ], 2560 ],
2578 }, { # 'OS!="android" and OS!="ios"' 2561 }, { # 'OS!="android" and OS!="ios"'
2579 'dependencies': [ 2562 'dependencies': [
2580 'tools/profile_reset/jtl_compiler.gyp:jtl_compiler_lib', 2563 'tools/profile_reset/jtl_compiler.gyp:jtl_compiler_lib',
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
2960 'dependencies': [ 2943 'dependencies': [
2961 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2944 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2962 ], 2945 ],
2963 }], 2946 }],
2964 ], 2947 ],
2965 }, 2948 },
2966 ], 2949 ],
2967 }], 2950 }],
2968 ], # 'conditions' 2951 ], # 'conditions'
2969 } 2952 }
OLDNEW
« build/all.gyp ('K') | « build/all.gyp ('k') | skia/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698