| 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['strip_tests==1', { | 7 ['strip_tests==1', { |
| 8 'cflags!': [ '-g' ], | 8 'cflags!': [ '-g' ], |
| 9 'ldflags': [ '-Wl,--strip-debug' ], | 9 'ldflags': [ '-Wl,--strip-debug' ], |
| 10 }], | 10 }], |
| (...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 'test/ui/ppapi_uitest.cc', | 792 'test/ui/ppapi_uitest.cc', |
| 793 'test/ui/sandbox_uitests.cc', | 793 'test/ui/sandbox_uitests.cc', |
| 794 '../content/browser/appcache/appcache_ui_test.cc', | 794 '../content/browser/appcache/appcache_ui_test.cc', |
| 795 '../content/browser/in_process_webkit/dom_storage_uitest.cc', | 795 '../content/browser/in_process_webkit/dom_storage_uitest.cc', |
| 796 '../content/browser/renderer_host/resource_dispatcher_host_uitest.cc', | 796 '../content/browser/renderer_host/resource_dispatcher_host_uitest.cc', |
| 797 '../content/worker/test/worker_uitest.cc', | 797 '../content/worker/test/worker_uitest.cc', |
| 798 ], | 798 ], |
| 799 'conditions': [ | 799 'conditions': [ |
| 800 ['disable_nacl!=1', { | 800 ['disable_nacl!=1', { |
| 801 'dependencies': [ | 801 'dependencies': [ |
| 802 '../ppapi/ppapi_internal.gyp:ppapi_nacl_tests', | 802 '../ppapi/ppapi_untrusted.gyp:ppapi_nacl_tests', |
| 803 ], | 803 ], |
| 804 'copies': [ | 804 'copies': [ |
| 805 { | 805 { |
| 806 'destination': '<(PRODUCT_DIR)', | 806 'destination': '<(PRODUCT_DIR)', |
| 807 'files': [ | 807 'files': [ |
| 808 '../ppapi/tests/test_case.html', | 808 '../ppapi/tests/test_case.html', |
| 809 '../ppapi/tests/test_page.css', | 809 '../ppapi/tests/test_page.css', |
| 810 '../ppapi/native_client/tests/ppapi_tests/test_case.nmf', | 810 '../ppapi/native_client/tests/ppapi_tests/test_case.nmf', |
| 811 ], | 811 ], |
| 812 }, | 812 }, |
| (...skipping 3520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4333 # Use outputs of this action as inputs for the main target build. | 4333 # Use outputs of this action as inputs for the main target build. |
| 4334 # Seems as a misnomer but makes this happy on Linux (scons). | 4334 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4335 'process_outputs_as_sources': 1, | 4335 'process_outputs_as_sources': 1, |
| 4336 }, | 4336 }, |
| 4337 ], # 'actions' | 4337 ], # 'actions' |
| 4338 }, | 4338 }, |
| 4339 ] | 4339 ] |
| 4340 }], # 'coverage!=0' | 4340 }], # 'coverage!=0' |
| 4341 ], # 'conditions' | 4341 ], # 'conditions' |
| 4342 } | 4342 } |
| OLD | NEW |