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

Side by Side Diff: content/content_tests.gypi

Issue 11648027: Extract external file systems handling from isolated context. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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 { 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 '../webkit/database/database_quota_client_unittest.cc', 407 '../webkit/database/database_quota_client_unittest.cc',
408 '../webkit/database/databases_table_unittest.cc', 408 '../webkit/database/databases_table_unittest.cc',
409 '../webkit/database/database_tracker_unittest.cc', 409 '../webkit/database/database_tracker_unittest.cc',
410 '../webkit/database/database_util_unittest.cc', 410 '../webkit/database/database_util_unittest.cc',
411 '../webkit/dom_storage/dom_storage_area_unittest.cc', 411 '../webkit/dom_storage/dom_storage_area_unittest.cc',
412 '../webkit/dom_storage/dom_storage_cached_area_unittest.cc', 412 '../webkit/dom_storage/dom_storage_cached_area_unittest.cc',
413 '../webkit/dom_storage/dom_storage_context_unittest.cc', 413 '../webkit/dom_storage/dom_storage_context_unittest.cc',
414 '../webkit/dom_storage/dom_storage_database_unittest.cc', 414 '../webkit/dom_storage/dom_storage_database_unittest.cc',
415 '../webkit/dom_storage/dom_storage_map_unittest.cc', 415 '../webkit/dom_storage/dom_storage_map_unittest.cc',
416 '../webkit/dom_storage/session_storage_database_unittest.cc', 416 '../webkit/dom_storage/session_storage_database_unittest.cc',
417 '../webkit/fileapi/external_mount_points_unittest.cc',
417 '../webkit/fileapi/file_system_database_test_helper.cc', 418 '../webkit/fileapi/file_system_database_test_helper.cc',
418 '../webkit/fileapi/file_system_database_test_helper.h', 419 '../webkit/fileapi/file_system_database_test_helper.h',
419 '../webkit/fileapi/file_system_directory_database_unittest.cc', 420 '../webkit/fileapi/file_system_directory_database_unittest.cc',
420 '../webkit/fileapi/file_system_dir_url_request_job_unittest.cc', 421 '../webkit/fileapi/file_system_dir_url_request_job_unittest.cc',
421 '../webkit/fileapi/file_system_file_stream_reader_unittest.cc', 422 '../webkit/fileapi/file_system_file_stream_reader_unittest.cc',
422 '../webkit/fileapi/file_system_file_util_unittest.cc', 423 '../webkit/fileapi/file_system_file_util_unittest.cc',
423 '../webkit/fileapi/file_system_mount_point_provider_unittest.cc', 424 '../webkit/fileapi/file_system_mount_point_provider_unittest.cc',
424 '../webkit/fileapi/file_system_origin_database_unittest.cc', 425 '../webkit/fileapi/file_system_origin_database_unittest.cc',
425 '../webkit/fileapi/file_system_quota_client_unittest.cc', 426 '../webkit/fileapi/file_system_quota_client_unittest.cc',
426 '../webkit/fileapi/file_system_url_unittest.cc', 427 '../webkit/fileapi/file_system_url_unittest.cc',
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 'dependencies': [ 580 'dependencies': [
580 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 581 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
581 ], 582 ],
582 }], 583 }],
583 ['OS=="mac"', { 584 ['OS=="mac"', {
584 # These flags are needed to run the test on Mac. 585 # These flags are needed to run the test on Mac.
585 # Search for comments about "xcode_settings" in chrome_tests.gypi. 586 # Search for comments about "xcode_settings" in chrome_tests.gypi.
586 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 587 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
587 }], 588 }],
588 ['chromeos==1', { 589 ['chromeos==1', {
590 'sources': [
591 '../webkit/chromeos/fileapi/cros_mount_point_provider_unittest.cc'
jam 2013/01/14 21:05:46 you should list this file path above. by conventio
tbarzic 2013/01/14 21:36:28 Done.
592 ],
589 'sources/': [ 593 'sources/': [
590 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes t.cc'], 594 ['exclude', '^browser/renderer_host/gtk_key_bindings_handler_unittes t.cc'],
591 ], 595 ],
592 }], 596 }],
593 ['use_aura==1', { 597 ['use_aura==1', {
594 'dependencies': [ 598 'dependencies': [
595 '../ui/aura/aura.gyp:aura', 599 '../ui/aura/aura.gyp:aura',
596 ], 600 ],
597 'sources!': [ 601 'sources!': [
598 'browser/accessibility/browser_accessibility_win_unittest.cc', 602 'browser/accessibility/browser_accessibility_win_unittest.cc',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 'resource_dir': '../res', 962 'resource_dir': '../res',
959 'additional_src_dirs': ['../content/public/android/javatests/'], 963 'additional_src_dirs': ['../content/public/android/javatests/'],
960 'is_test_apk': 1, 964 'is_test_apk': 1,
961 }, 965 },
962 'includes': [ '../build/java_apk.gypi' ], 966 'includes': [ '../build/java_apk.gypi' ],
963 }, 967 },
964 ], 968 ],
965 }], 969 }],
966 ], 970 ],
967 } 971 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698