OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 # Variables for js2gtest rules | 6 # Variables for js2gtest rules |
7 'gypv8sh': '../tools/gypv8sh.py', | 7 'gypv8sh': '../tools/gypv8sh.py', |
8 'js2gtest': 'test/base/js2gtest.js', | 8 'js2gtest': 'test/base/js2gtest.js', |
9 'mock_js': 'third_party/mock4js/mock4js.js', | 9 'mock_js': 'third_party/mock4js/mock4js.js', |
10 'test_api_js': 'test/data/webui/test_api.js', | 10 'test_api_js': 'test/data/webui/test_api.js', |
(...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 'test/ui/named_interface_uitest.cc', | 780 'test/ui/named_interface_uitest.cc', |
781 'test/ui/npapi_uitest.cc', | 781 'test/ui/npapi_uitest.cc', |
782 'test/ui/ppapi_uitest.cc', | 782 'test/ui/ppapi_uitest.cc', |
783 'test/ui/sandbox_uitests.cc', | 783 'test/ui/sandbox_uitests.cc', |
784 '../content/browser/appcache/appcache_ui_test.cc', | 784 '../content/browser/appcache/appcache_ui_test.cc', |
785 '../content/browser/in_process_webkit/dom_storage_uitest.cc', | 785 '../content/browser/in_process_webkit/dom_storage_uitest.cc', |
786 '../content/browser/renderer_host/resource_dispatcher_host_uitest.cc', | 786 '../content/browser/renderer_host/resource_dispatcher_host_uitest.cc', |
787 '../content/worker/test/worker_uitest.cc', | 787 '../content/worker/test/worker_uitest.cc', |
788 ], | 788 ], |
789 'conditions': [ | 789 'conditions': [ |
| 790 ['disable_nacl!=1', { |
| 791 'dependencies': [ |
| 792 '../ppapi/ppapi_internal.gyp:ppapi_nacl_tests', |
| 793 ], |
| 794 'copies': [ |
| 795 { |
| 796 'destination': '<(PRODUCT_DIR)', |
| 797 'files': [ |
| 798 '../ppapi/tests/test_case.html', |
| 799 '../ppapi/tests/test_page.css', |
| 800 '../ppapi/native_client/tests/ppapi_tests/test_case.nmf', |
| 801 ], |
| 802 }, |
| 803 { |
| 804 'destination': '<(PRODUCT_DIR)/test_url_loader_data', |
| 805 'files': [ |
| 806 '../ppapi/tests/test_url_loader_data/hello.txt', |
| 807 ], |
| 808 }, |
| 809 ], |
| 810 }], |
790 ['target_arch!="arm"', { | 811 ['target_arch!="arm"', { |
791 'dependencies': [ | 812 'dependencies': [ |
792 '../webkit/webkit.gyp:copy_npapi_test_plugin', | 813 '../webkit/webkit.gyp:copy_npapi_test_plugin', |
793 ], | 814 ], |
794 }], | 815 }], |
795 ['toolkit_uses_gtk == 1', { | 816 ['toolkit_uses_gtk == 1', { |
796 'dependencies': [ | 817 'dependencies': [ |
797 '../build/linux/system.gyp:gtk', | 818 '../build/linux/system.gyp:gtk', |
798 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 819 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
799 ], | 820 ], |
(...skipping 3473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4273 # Use outputs of this action as inputs for the main target build. | 4294 # Use outputs of this action as inputs for the main target build. |
4274 # Seems as a misnomer but makes this happy on Linux (scons). | 4295 # Seems as a misnomer but makes this happy on Linux (scons). |
4275 'process_outputs_as_sources': 1, | 4296 'process_outputs_as_sources': 1, |
4276 }, | 4297 }, |
4277 ], # 'actions' | 4298 ], # 'actions' |
4278 }, | 4299 }, |
4279 ] | 4300 ] |
4280 }], # 'coverage!=0' | 4301 }], # 'coverage!=0' |
4281 ], # 'conditions' | 4302 ], # 'conditions' |
4282 } | 4303 } |
OLD | NEW |