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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 'variables': { | 77 'variables': { |
78 'files': [ | 78 'files': [ |
79 '<(PRODUCT_DIR)/Content Shell.app/', | 79 '<(PRODUCT_DIR)/Content Shell.app/', |
80 '<(PRODUCT_DIR)/ffmpegsumo.so', | 80 '<(PRODUCT_DIR)/ffmpegsumo.so', |
81 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.plugin/', | 81 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.plugin/', |
82 '<(PRODUCT_DIR)/plugins/test_netscape_plugin.plugin/', | 82 '<(PRODUCT_DIR)/plugins/test_netscape_plugin.plugin/', |
83 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', | 83 '<(PRODUCT_DIR)/ppapi_tests.plugin/Contents/MacOS/ppapi_tests', |
84 ], | 84 ], |
85 }, | 85 }, |
86 }], | 86 }], |
| 87 ['OS=="mac" and asan==1', { |
| 88 'variables': { |
| 89 'files': [ |
| 90 '<(PRODUCT_DIR)/content_browsertests.dSYM/', |
| 91 '<(PRODUCT_DIR)/Content Shell.app.dSYM/', |
| 92 '<(PRODUCT_DIR)/ffmpegsumo.so.dSYM/', |
| 93 '<(PRODUCT_DIR)/npapi_test_plugin.plugin.dSYM/', |
| 94 '<(PRODUCT_DIR)/test_netscape_plugin.plugin.dSYM/', |
| 95 '<(PRODUCT_DIR)/ppapi_tests.plugin.dSYM/', |
| 96 ], |
| 97 }, |
| 98 }], |
87 ['OS=="mac" or OS=="win"', { | 99 ['OS=="mac" or OS=="win"', { |
88 'variables': { | 100 'variables': { |
89 'command': [ | 101 'command': [ |
90 '../testing/test_env.py', | 102 '../testing/test_env.py', |
91 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', | 103 '<(PRODUCT_DIR)/content_browsertests<(EXECUTABLE_SUFFIX)', |
92 '--test-launcher-bot-mode', | 104 '--test-launcher-bot-mode', |
93 '--asan=<(asan)', | 105 '--asan=<(asan)', |
94 '--lsan=<(lsan)', | 106 '--lsan=<(lsan)', |
95 ], | 107 ], |
96 }, | 108 }, |
(...skipping 23 matching lines...) Expand all Loading... |
120 '<(PRODUCT_DIR)/content_browsertests.exe.pdb', | 132 '<(PRODUCT_DIR)/content_browsertests.exe.pdb', |
121 ], | 133 ], |
122 }, | 134 }, |
123 }], | 135 }], |
124 ], | 136 ], |
125 'includes': [ | 137 'includes': [ |
126 '../base/base.isolate', | 138 '../base/base.isolate', |
127 '../gin/v8.isolate', | 139 '../gin/v8.isolate', |
128 ], | 140 ], |
129 } | 141 } |
OLD | NEW |