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 'js2gtest_out_dir': '<(SHARED_INTERMEDIATE_DIR)/js2gtest', | 9 'js2gtest_out_dir': '<(SHARED_INTERMEDIATE_DIR)/js2gtest', |
10 'mock_js': 'third_party/mock4js/mock4js.js', | 10 'mock_js': 'third_party/mock4js/mock4js.js', |
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
774 'test/ui/named_interface_uitest.cc', | 774 'test/ui/named_interface_uitest.cc', |
775 'test/ui/npapi_uitest.cc', | 775 'test/ui/npapi_uitest.cc', |
776 'test/ui/ppapi_uitest.cc', | 776 'test/ui/ppapi_uitest.cc', |
777 'test/ui/sandbox_uitests.cc', | 777 'test/ui/sandbox_uitests.cc', |
778 '../content/browser/appcache/appcache_ui_test.cc', | 778 '../content/browser/appcache/appcache_ui_test.cc', |
779 '../content/browser/in_process_webkit/dom_storage_uitest.cc', | 779 '../content/browser/in_process_webkit/dom_storage_uitest.cc', |
780 '../content/browser/renderer_host/resource_dispatcher_host_uitest.cc', | 780 '../content/browser/renderer_host/resource_dispatcher_host_uitest.cc', |
781 '../content/worker/test/worker_uitest.cc', | 781 '../content/worker/test/worker_uitest.cc', |
782 ], | 782 ], |
783 'conditions': [ | 783 'conditions': [ |
| 784 ['disable_nacl!=1', { |
| 785 'dependencies': [ |
| 786 '../ppapi/ppapi_internal.gyp:ppapi_nacl_tests', |
| 787 ], |
| 788 'copies': [ |
| 789 { |
| 790 'destination': '<(PRODUCT_DIR)', |
| 791 'files': [ |
| 792 '../ppapi/tests/test_case.html', |
| 793 '../ppapi/tests/test_page.css', |
| 794 '../ppapi/native_client/tests/ppapi_tests/test_case.nmf', |
| 795 ], |
| 796 }, |
| 797 { |
| 798 'destination': '<(PRODUCT_DIR)/test_url_loader_data', |
| 799 'files': [ |
| 800 '../ppapi/tests//test_url_loader_data/hello.txt', |
| 801 ], |
| 802 }, |
| 803 ], |
| 804 }], |
784 ['target_arch!="arm"', { | 805 ['target_arch!="arm"', { |
785 'dependencies': [ | 806 'dependencies': [ |
786 '../webkit/webkit.gyp:copy_npapi_test_plugin', | 807 '../webkit/webkit.gyp:copy_npapi_test_plugin', |
787 ], | 808 ], |
788 }], | 809 }], |
789 ['toolkit_uses_gtk == 1', { | 810 ['toolkit_uses_gtk == 1', { |
790 'dependencies': [ | 811 'dependencies': [ |
791 '../build/linux/system.gyp:gtk', | 812 '../build/linux/system.gyp:gtk', |
792 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 813 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
793 ], | 814 ], |
(...skipping 3453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4247 # Use outputs of this action as inputs for the main target build. | 4268 # Use outputs of this action as inputs for the main target build. |
4248 # Seems as a misnomer but makes this happy on Linux (scons). | 4269 # Seems as a misnomer but makes this happy on Linux (scons). |
4249 'process_outputs_as_sources': 1, | 4270 'process_outputs_as_sources': 1, |
4250 }, | 4271 }, |
4251 ], # 'actions' | 4272 ], # 'actions' |
4252 }, | 4273 }, |
4253 ] | 4274 ] |
4254 }], # 'coverage!=0' | 4275 }], # 'coverage!=0' |
4255 ], # 'conditions' | 4276 ], # 'conditions' |
4256 } | 4277 } |
OLD | NEW |