| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 rebase_path(target_gen_dir, root_build_dir), | 211 rebase_path(target_gen_dir, root_build_dir), |
| 212 ] | 212 ] |
| 213 } | 213 } |
| 214 | 214 |
| 215 source_set("lib") { | 215 source_set("lib") { |
| 216 sources = [ | 216 sources = [ |
| 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 "base_logger.cc", |
| 222 "base_logger.h", |
| 221 "basic_types.cc", | 223 "basic_types.cc", |
| 222 "basic_types.h", | 224 "basic_types.h", |
| 223 "capabilities.cc", | 225 "capabilities.cc", |
| 224 "capabilities.h", | 226 "capabilities.h", |
| 225 "chrome/browser_info.cc", | 227 "chrome/browser_info.cc", |
| 226 "chrome/browser_info.h", | 228 "chrome/browser_info.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", |
| 237 "devtools_events_logger.cc", |
| 238 "devtools_events_logger.h", |
| 235 "element_commands.cc", | 239 "element_commands.cc", |
| 236 "element_commands.h", | 240 "element_commands.h", |
| 237 "element_util.cc", | 241 "element_util.cc", |
| 238 "element_util.h", | 242 "element_util.h", |
| 239 "key_converter.cc", | 243 "key_converter.cc", |
| 240 "key_converter.h", | 244 "key_converter.h", |
| 241 "keycode_text_conversion.h", | 245 "keycode_text_conversion.h", |
| 242 "keycode_text_conversion_mac.mm", | 246 "keycode_text_conversion_mac.mm", |
| 243 "keycode_text_conversion_ozone.cc", | 247 "keycode_text_conversion_ozone.cc", |
| 244 "keycode_text_conversion_win.cc", | 248 "keycode_text_conversion_win.cc", |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 399 "//base", | 403 "//base", |
| 400 "//base/test:run_all_unittests", | 404 "//base/test:run_all_unittests", |
| 401 "//net", | 405 "//net", |
| 402 "//net:http_server", | 406 "//net:http_server", |
| 403 "//net:test_support", | 407 "//net:test_support", |
| 404 "//testing/gtest", | 408 "//testing/gtest", |
| 405 "//ui/events:test_support", | 409 "//ui/events:test_support", |
| 406 "//url", | 410 "//url", |
| 407 ] | 411 ] |
| 408 } | 412 } |
| OLD | NEW |