| 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 |
| 11 js_files = [ | 11 js_files = [ |
| 12 "js/add_cookie.js", | |
| 13 "js/call_function.js", | 12 "js/call_function.js", |
| 14 "js/execute_async_script.js", | 13 "js/execute_async_script.js", |
| 15 "js/focus.js", | 14 "js/focus.js", |
| 16 "js/get_element_region.js", | 15 "js/get_element_region.js", |
| 17 "js/is_option_element_toggleable.js", | 16 "js/is_option_element_toggleable.js", |
| 18 ] | 17 ] |
| 19 | 18 |
| 20 inputs = [ "cpp_source.py" ] + js_files | 19 inputs = [ "cpp_source.py" ] + js_files |
| 21 | 20 |
| 22 outputs = [ | 21 outputs = [ |
| (...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 "//base", | 402 "//base", |
| 404 "//base/test:run_all_unittests", | 403 "//base/test:run_all_unittests", |
| 405 "//net", | 404 "//net", |
| 406 "//net:http_server", | 405 "//net:http_server", |
| 407 "//net:test_support", | 406 "//net:test_support", |
| 408 "//testing/gtest", | 407 "//testing/gtest", |
| 409 "//ui/events:test_support", | 408 "//ui/events:test_support", |
| 410 "//url", | 409 "//url", |
| 411 ] | 410 ] |
| 412 } | 411 } |
| OLD | NEW |