OLD | NEW |
---|---|
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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
396 '../webkit/appcache/mock_appcache_service.h', | 396 '../webkit/appcache/mock_appcache_service.h', |
397 '../webkit/appcache/mock_appcache_storage.cc', | 397 '../webkit/appcache/mock_appcache_storage.cc', |
398 '../webkit/appcache/mock_appcache_storage.h', | 398 '../webkit/appcache/mock_appcache_storage.h', |
399 '../webkit/appcache/mock_appcache_storage_unittest.cc', | 399 '../webkit/appcache/mock_appcache_storage_unittest.cc', |
400 '../webkit/blob/blob_storage_controller_unittest.cc', | 400 '../webkit/blob/blob_storage_controller_unittest.cc', |
401 '../webkit/blob/blob_url_request_job_unittest.cc', | 401 '../webkit/blob/blob_url_request_job_unittest.cc', |
402 '../webkit/blob/local_file_stream_reader_unittest.cc', | 402 '../webkit/blob/local_file_stream_reader_unittest.cc', |
403 '../webkit/blob/mock_blob_url_request_context.cc', | 403 '../webkit/blob/mock_blob_url_request_context.cc', |
404 '../webkit/blob/mock_blob_url_request_context.h', | 404 '../webkit/blob/mock_blob_url_request_context.h', |
405 '../webkit/blob/shareable_file_reference_unittest.cc', | 405 '../webkit/blob/shareable_file_reference_unittest.cc', |
406 '../webkit/chromeos/fileapi/cros_mount_point_provider_unittest.cc', | |
406 '../webkit/database/database_connections_unittest.cc', | 407 '../webkit/database/database_connections_unittest.cc', |
407 '../webkit/database/database_quota_client_unittest.cc', | 408 '../webkit/database/database_quota_client_unittest.cc', |
408 '../webkit/database/databases_table_unittest.cc', | 409 '../webkit/database/databases_table_unittest.cc', |
409 '../webkit/database/database_tracker_unittest.cc', | 410 '../webkit/database/database_tracker_unittest.cc', |
410 '../webkit/database/database_util_unittest.cc', | 411 '../webkit/database/database_util_unittest.cc', |
411 '../webkit/dom_storage/dom_storage_area_unittest.cc', | 412 '../webkit/dom_storage/dom_storage_area_unittest.cc', |
412 '../webkit/dom_storage/dom_storage_cached_area_unittest.cc', | 413 '../webkit/dom_storage/dom_storage_cached_area_unittest.cc', |
413 '../webkit/dom_storage/dom_storage_context_unittest.cc', | 414 '../webkit/dom_storage/dom_storage_context_unittest.cc', |
414 '../webkit/dom_storage/dom_storage_database_unittest.cc', | 415 '../webkit/dom_storage/dom_storage_database_unittest.cc', |
415 '../webkit/dom_storage/dom_storage_map_unittest.cc', | 416 '../webkit/dom_storage/dom_storage_map_unittest.cc', |
416 '../webkit/dom_storage/session_storage_database_unittest.cc', | 417 '../webkit/dom_storage/session_storage_database_unittest.cc', |
418 '../webkit/fileapi/external_mount_points_unittest.cc', | |
417 '../webkit/fileapi/file_system_database_test_helper.cc', | 419 '../webkit/fileapi/file_system_database_test_helper.cc', |
418 '../webkit/fileapi/file_system_database_test_helper.h', | 420 '../webkit/fileapi/file_system_database_test_helper.h', |
419 '../webkit/fileapi/file_system_directory_database_unittest.cc', | 421 '../webkit/fileapi/file_system_directory_database_unittest.cc', |
420 '../webkit/fileapi/file_system_dir_url_request_job_unittest.cc', | 422 '../webkit/fileapi/file_system_dir_url_request_job_unittest.cc', |
421 '../webkit/fileapi/file_system_file_stream_reader_unittest.cc', | 423 '../webkit/fileapi/file_system_file_stream_reader_unittest.cc', |
422 '../webkit/fileapi/file_system_file_util_unittest.cc', | 424 '../webkit/fileapi/file_system_file_util_unittest.cc', |
423 '../webkit/fileapi/file_system_mount_point_provider_unittest.cc', | 425 '../webkit/fileapi/file_system_mount_point_provider_unittest.cc', |
424 '../webkit/fileapi/file_system_origin_database_unittest.cc', | 426 '../webkit/fileapi/file_system_origin_database_unittest.cc', |
425 '../webkit/fileapi/file_system_quota_client_unittest.cc', | 427 '../webkit/fileapi/file_system_quota_client_unittest.cc', |
426 '../webkit/fileapi/file_system_url_unittest.cc', | 428 '../webkit/fileapi/file_system_url_unittest.cc', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
582 }], | 584 }], |
583 ['OS=="mac"', { | 585 ['OS=="mac"', { |
584 # These flags are needed to run the test on Mac. | 586 # These flags are needed to run the test on Mac. |
585 # Search for comments about "xcode_settings" in chrome_tests.gypi. | 587 # Search for comments about "xcode_settings" in chrome_tests.gypi. |
586 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, | 588 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
587 }], | 589 }], |
588 ['chromeos==1', { | 590 ['chromeos==1', { |
589 'sources/': [ | 591 'sources/': [ |
590 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes t.cc'], | 592 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes t.cc'], |
591 ], | 593 ], |
594 }, { # chromeos!=1 | |
595 'sources/': [ | |
596 ['exclude', '^../webkit/chromeos/'], | |
jam
2013/01/15 01:37:10
are you sure you need this? the file filters shoul
tbarzic
2013/01/15 02:11:27
it didn't compile on Linux without this..
jam
2013/01/15 20:52:45
ah, looks like filename_rules.gypi is missing an e
| |
597 ], | |
592 }], | 598 }], |
593 ['use_aura==1', { | 599 ['use_aura==1', { |
594 'dependencies': [ | 600 'dependencies': [ |
595 '../ui/aura/aura.gyp:aura', | 601 '../ui/aura/aura.gyp:aura', |
596 ], | 602 ], |
597 'sources!': [ | 603 'sources!': [ |
598 'browser/accessibility/browser_accessibility_win_unittest.cc', | 604 'browser/accessibility/browser_accessibility_win_unittest.cc', |
599 ], | 605 ], |
600 }], | 606 }], |
601 ['OS == "android"', { | 607 ['OS == "android"', { |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
958 'resource_dir': '../res', | 964 'resource_dir': '../res', |
959 'additional_src_dirs': ['../content/public/android/javatests/'], | 965 'additional_src_dirs': ['../content/public/android/javatests/'], |
960 'is_test_apk': 1, | 966 'is_test_apk': 1, |
961 }, | 967 }, |
962 'includes': [ '../build/java_apk.gypi' ], | 968 'includes': [ '../build/java_apk.gypi' ], |
963 }, | 969 }, |
964 ], | 970 ], |
965 }], | 971 }], |
966 ], | 972 ], |
967 } | 973 } |
OLD | NEW |