| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # ============================================================================== | 5 # ============================================================================== |
| 6 # TEST SETUP | 6 # TEST SETUP |
| 7 # ============================================================================== | 7 # ============================================================================== |
| 8 | 8 |
| 9 # Define a test as an executable (or apk on Android) with the "testonly" flag | 9 # Define a test as an executable (or apk on Android) with the "testonly" flag |
| 10 # set. | 10 # set. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "all_dependent_configs", | 33 "all_dependent_configs", |
| 34 "allow_circular_includes_from", | 34 "allow_circular_includes_from", |
| 35 "cflags", | 35 "cflags", |
| 36 "cflags_c", | 36 "cflags_c", |
| 37 "cflags_cc", | 37 "cflags_cc", |
| 38 "check_includes", | 38 "check_includes", |
| 39 "data", | 39 "data", |
| 40 "data_deps", | 40 "data_deps", |
| 41 "datadeps", | 41 "datadeps", |
| 42 "defines", | 42 "defines", |
| 43 "forward_dependent_configs_from", | |
| 44 "include_dirs", | 43 "include_dirs", |
| 45 "ldflags", | 44 "ldflags", |
| 46 "lib_dirs", | 45 "lib_dirs", |
| 47 "libs", | 46 "libs", |
| 48 "output_extension", | 47 "output_extension", |
| 49 "output_name", | 48 "output_name", |
| 50 "public", | 49 "public", |
| 51 "public_configs", | 50 "public_configs", |
| 52 "public_deps", | 51 "public_deps", |
| 53 "sources", | 52 "sources", |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "cflags", | 128 "cflags", |
| 130 "cflags_c", | 129 "cflags_c", |
| 131 "cflags_cc", | 130 "cflags_cc", |
| 132 "cflags_objc", | 131 "cflags_objc", |
| 133 "cflags_objcc", | 132 "cflags_objcc", |
| 134 "check_includes", | 133 "check_includes", |
| 135 "configs", | 134 "configs", |
| 136 "data", | 135 "data", |
| 137 "data_deps", | 136 "data_deps", |
| 138 "defines", | 137 "defines", |
| 139 "forward_dependent_configs_from", | |
| 140 "include_dirs", | 138 "include_dirs", |
| 141 "ldflags", | 139 "ldflags", |
| 142 "libs", | 140 "libs", |
| 143 "output_extension", | 141 "output_extension", |
| 144 "output_name", | 142 "output_name", |
| 145 "public", | 143 "public", |
| 146 "public_configs", | 144 "public_configs", |
| 147 "public_deps", | 145 "public_deps", |
| 148 "sources", | 146 "sources", |
| 149 "visibility", | 147 "visibility", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 173 # All shared libraries must have the sanitizer deps to properly link in | 171 # All shared libraries must have the sanitizer deps to properly link in |
| 174 # asan mode (this target will be empty in other cases). | 172 # asan mode (this target will be empty in other cases). |
| 175 "//build/config/sanitizers:deps", | 173 "//build/config/sanitizers:deps", |
| 176 | 174 |
| 177 # Give tests the default manifest on Windows (a no-op elsewhere). | 175 # Give tests the default manifest on Windows (a no-op elsewhere). |
| 178 "//build/win:default_exe_manifest", | 176 "//build/win:default_exe_manifest", |
| 179 ] | 177 ] |
| 180 } | 178 } |
| 181 } | 179 } |
| 182 } | 180 } |
| OLD | NEW |