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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 action("embed_js_in_cpp") { | 8 action("embed_js_in_cpp") { |
9 script = "embed_js_in_cpp.py" | 9 script = "embed_js_in_cpp.py" |
10 | 10 |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "//third_party/webdriver/atoms.cc", | 217 "//third_party/webdriver/atoms.cc", |
218 "//third_party/webdriver/atoms.h", | 218 "//third_party/webdriver/atoms.h", |
219 "alert_commands.cc", | 219 "alert_commands.cc", |
220 "alert_commands.h", | 220 "alert_commands.h", |
221 "basic_types.cc", | 221 "basic_types.cc", |
222 "basic_types.h", | 222 "basic_types.h", |
223 "capabilities.cc", | 223 "capabilities.cc", |
224 "capabilities.h", | 224 "capabilities.h", |
225 "chrome/browser_info.cc", | 225 "chrome/browser_info.cc", |
226 "chrome/browser_info.h", | 226 "chrome/browser_info.h", |
| 227 "chrome/scoped_temp_dir_with_retry.cc", |
| 228 "chrome/scoped_temp_dir_with_retry.h", |
227 "chrome_launcher.cc", | 229 "chrome_launcher.cc", |
228 "chrome_launcher.h", | 230 "chrome_launcher.h", |
229 "command.h", | 231 "command.h", |
230 "command_listener.h", | 232 "command_listener.h", |
231 "command_listener_proxy.cc", | 233 "command_listener_proxy.cc", |
232 "command_listener_proxy.h", | 234 "command_listener_proxy.h", |
233 "commands.cc", | 235 "commands.cc", |
234 "commands.h", | 236 "commands.h", |
235 "element_commands.cc", | 237 "element_commands.cc", |
236 "element_commands.h", | 238 "element_commands.h", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 "//base", | 401 "//base", |
400 "//base/test:run_all_unittests", | 402 "//base/test:run_all_unittests", |
401 "//net", | 403 "//net", |
402 "//net:http_server", | 404 "//net:http_server", |
403 "//net:test_support", | 405 "//net:test_support", |
404 "//testing/gtest", | 406 "//testing/gtest", |
405 "//ui/events:test_support", | 407 "//ui/events:test_support", |
406 "//url", | 408 "//url", |
407 ] | 409 ] |
408 } | 410 } |
OLD | NEW |