| 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("//chrome/chrome_tests.gni") | |
| 7 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 8 | 7 |
| 9 action("embed_js_in_cpp") { | 8 action("embed_js_in_cpp") { |
| 10 script = "embed_js_in_cpp.py" | 9 script = "embed_js_in_cpp.py" |
| 11 | 10 |
| 12 js_files = [ | 11 js_files = [ |
| 13 "js/add_cookie.js", | 12 "js/add_cookie.js", |
| 14 "js/call_function.js", | 13 "js/call_function.js", |
| 15 "js/execute_async_script.js", | 14 "js/execute_async_script.js", |
| 16 "js/focus.js", | 15 "js/focus.js", |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 ":lib", | 399 ":lib", |
| 401 "//base", | 400 "//base", |
| 402 "//base/test:run_all_unittests", | 401 "//base/test:run_all_unittests", |
| 403 "//net", | 402 "//net", |
| 404 "//net:http_server", | 403 "//net:http_server", |
| 405 "//net:test_support", | 404 "//net:test_support", |
| 406 "//testing/gtest", | 405 "//testing/gtest", |
| 407 "//url", | 406 "//url", |
| 408 ] | 407 ] |
| 409 } | 408 } |
| OLD | NEW |