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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
535 '../ui/ui.gyp:ui', | 535 '../ui/ui.gyp:ui', |
536 '../webkit/support/webkit_support.gyp:glue', | 536 '../webkit/support/webkit_support.gyp:glue', |
537 ], | 537 ], |
538 'include_dirs': [ | 538 'include_dirs': [ |
539 '..', | 539 '..', |
540 ], | 540 ], |
541 'defines': [ | 541 'defines': [ |
542 'HAS_OUT_OF_PROC_TEST_RUNNER', | 542 'HAS_OUT_OF_PROC_TEST_RUNNER', |
543 ], | 543 ], |
544 'sources': [ | 544 'sources': [ |
| 545 'browser/appcache/appcache_browsertest.cc', |
| 546 'browser/audio_browsertest.cc', |
| 547 'browser/in_process_webkit/indexed_db_layout_browsertest.cc', |
| 548 'browser/media_browsertest.cc', |
545 'browser/plugin_browsertest.cc', | 549 'browser/plugin_browsertest.cc', |
| 550 'browser/worker_host/test/worker_browsertest.cc', |
546 'test/content_browser_test.h', | 551 'test/content_browser_test.h', |
547 'test/content_browser_test.cc', | 552 'test/content_browser_test.cc', |
548 'test/content_browser_test_utils.cc', | 553 'test/content_browser_test_utils.cc', |
549 'test/content_browser_test_utils.h', | 554 'test/content_browser_test_utils.h', |
550 'test/content_browser_test_utils_mac.mm', | 555 'test/content_browser_test_utils_mac.mm', |
551 'test/content_browser_test_test.cc', | 556 'test/content_browser_test_test.cc', |
552 'test/content_test_launcher.cc', | 557 'test/content_test_launcher.cc', |
| 558 'test/layout_browsertest.cc', |
| 559 'test/layout_browsertest.h', |
| 560 'test/layout_test_http_server.cc', |
| 561 'test/layout_test_http_server.h', |
553 ], | 562 ], |
554 'conditions': [ | 563 'conditions': [ |
555 ['OS=="win"', { | 564 ['OS=="win"', { |
556 'resource_include_dirs': [ | 565 'resource_include_dirs': [ |
557 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 566 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
558 ], | 567 ], |
559 'sources': [ | 568 'sources': [ |
560 'shell/resource.h', | 569 'shell/resource.h', |
561 'shell/shell.rc', | 570 'shell/shell.rc', |
562 # TODO: It would be nice to have these pulled in | 571 # TODO: It would be nice to have these pulled in |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', | 718 '<(PRODUCT_DIR)/lib.java/chromium_content.jar', |
710 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', | 719 '<(PRODUCT_DIR)/lib.java/chromium_net.jar', |
711 ], | 720 ], |
712 }, | 721 }, |
713 'includes': [ '../build/apk_test.gypi' ], | 722 'includes': [ '../build/apk_test.gypi' ], |
714 }, | 723 }, |
715 ], | 724 ], |
716 }], | 725 }], |
717 ], | 726 ], |
718 } | 727 } |
OLD | NEW |