| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="android"', { | 6 ['OS=="android"', { |
| 7 'variables': { | 7 'variables': { |
| 8 'files': [ | 8 'files': [ |
| 9 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', | 9 '<(PRODUCT_DIR)/content_shell/assets/content_shell.pak', |
| 10 ], | 10 ], |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'variables': { | 79 'variables': { |
| 80 'files': [ | 80 'files': [ |
| 81 '<(PRODUCT_DIR)/Content Shell.app/', | 81 '<(PRODUCT_DIR)/Content Shell.app/', |
| 82 '<(PRODUCT_DIR)/ffmpegsumo.so', | 82 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 83 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.plugin/', | 83 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.plugin/', |
| 84 '<(PRODUCT_DIR)/plugins/test_netscape_plugin.plugin/', | 84 '<(PRODUCT_DIR)/plugins/test_netscape_plugin.plugin/', |
| 85 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', | 85 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', |
| 86 ], | 86 ], |
| 87 }, | 87 }, |
| 88 }], | 88 }], |
| 89 ['OS=="mac" and asan==1', { |
| 90 'variables': { |
| 91 'files': [ |
| 92 '<(PRODUCT_DIR)/content_browsertests.dSYM/', |
| 93 '<(PRODUCT_DIR)/Content Shell.app.dSYM/', |
| 94 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/', |
| 95 '<(PRODUCT_DIR)/npapi_test_plugin.plugin.dSYM/', |
| 96 '<(PRODUCT_DIR)/test_netscape_plugin.plugin.dSYM/', |
| 97 '<(PRODUCT_DIR)/ppapi_tests.plugin.dSYM/', |
| 98 ], |
| 99 }, |
| 100 }], |
| 89 ['OS=="mac" or OS=="win"', { | 101 ['OS=="mac" or OS=="win"', { |
| 90 'variables': { | 102 'variables': { |
| 91 'command': [ | 103 'command': [ |
| 92 '../testing/test_env.py', | 104 '../testing/test_env.py', |
| 93 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', | 105 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', |
| 94 '--test-launcher-bot-mode', | 106 '--test-launcher-bot-mode', |
| 95 '--asan=<(asan)', | 107 '--asan=<(asan)', |
| 96 '--lsan=<(lsan)', | 108 '--lsan=<(lsan)', |
| 97 '--msan=<(msan)', | 109 '--msan=<(msan)', |
| 98 '--tsan=<(tsan)', | 110 '--tsan=<(tsan)', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 124 '<(PRODUCT_DIR)/content_browsertests.exe.pdb', | 136 '<(PRODUCT_DIR)/content_browsertests.exe.pdb', |
| 125 ], | 137 ], |
| 126 }, | 138 }, |
| 127 }], | 139 }], |
| 128 ], | 140 ], |
| 129 'includes': [ | 141 'includes': [ |
| 130 '../base/base.isolate', | 142 '../base/base.isolate', |
| 131 '../gin/v8.isolate', | 143 '../gin/v8.isolate', |
| 132 ], | 144 ], |
| 133 } | 145 } |
| OLD | NEW |