| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 group("headless") { | 9 group("headless") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "lib/headless_content_main_delegate.cc", | 77 "lib/headless_content_main_delegate.cc", |
| 78 "lib/headless_content_main_delegate.h", | 78 "lib/headless_content_main_delegate.h", |
| 79 "lib/renderer/headless_content_renderer_client.cc", | 79 "lib/renderer/headless_content_renderer_client.cc", |
| 80 "lib/renderer/headless_content_renderer_client.h", | 80 "lib/renderer/headless_content_renderer_client.h", |
| 81 "lib/utility/headless_content_utility_client.cc", | 81 "lib/utility/headless_content_utility_client.cc", |
| 82 "lib/utility/headless_content_utility_client.h", | 82 "lib/utility/headless_content_utility_client.h", |
| 83 "public/headless_browser.cc", | 83 "public/headless_browser.cc", |
| 84 "public/headless_browser.h", | 84 "public/headless_browser.h", |
| 85 "public/headless_export.h", | 85 "public/headless_export.h", |
| 86 "public/headless_web_contents.h", | 86 "public/headless_web_contents.h", |
| 87 "public/util/error_reporter.cc", |
| 88 "public/util/error_reporter.h", |
| 87 "public/util/maybe.h", | 89 "public/util/maybe.h", |
| 88 ] | 90 ] |
| 89 | 91 |
| 90 deps = [ | 92 deps = [ |
| 91 ":pak", | 93 ":pak", |
| 92 "//base", | 94 "//base", |
| 93 "//components/devtools_http_handler", | 95 "//components/devtools_http_handler", |
| 94 "//content/public/app:both", | 96 "//content/public/app:both", |
| 95 "//content/public/browser", | 97 "//content/public/browser", |
| 96 "//content/public/child", | 98 "//content/public/child", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 110 testonly = true | 112 testonly = true |
| 111 | 113 |
| 112 deps = [ | 114 deps = [ |
| 113 ":headless_browsertests", | 115 ":headless_browsertests", |
| 114 ":headless_unittests", | 116 ":headless_unittests", |
| 115 ] | 117 ] |
| 116 } | 118 } |
| 117 | 119 |
| 118 test("headless_unittests") { | 120 test("headless_unittests") { |
| 119 sources = [ | 121 sources = [ |
| 122 "public/util/error_reporter_unittest.cc", |
| 120 "public/util/maybe_unittest.cc", | 123 "public/util/maybe_unittest.cc", |
| 121 ] | 124 ] |
| 122 | 125 |
| 123 deps = [ | 126 deps = [ |
| 127 ":headless_lib", |
| 124 "//base/test:run_all_unittests", | 128 "//base/test:run_all_unittests", |
| 125 "//base/test:test_support", | 129 "//base/test:test_support", |
| 126 "//testing/gtest", | 130 "//testing/gtest", |
| 127 ] | 131 ] |
| 128 } | 132 } |
| 129 | 133 |
| 130 test("headless_browsertests") { | 134 test("headless_browsertests") { |
| 131 sources = [ | 135 sources = [ |
| 132 "lib/headless_browser_browsertest.cc", | 136 "lib/headless_browser_browsertest.cc", |
| 133 "lib/headless_web_contents_browsertest.cc", | 137 "lib/headless_web_contents_browsertest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 154 sources = [ | 158 sources = [ |
| 155 "app/headless_shell.cc", | 159 "app/headless_shell.cc", |
| 156 "app/headless_shell_switches.cc", | 160 "app/headless_shell_switches.cc", |
| 157 "app/headless_shell_switches.h", | 161 "app/headless_shell_switches.h", |
| 158 ] | 162 ] |
| 159 | 163 |
| 160 deps = [ | 164 deps = [ |
| 161 "//headless:headless_lib", | 165 "//headless:headless_lib", |
| 162 ] | 166 ] |
| 163 } | 167 } |
| OLD | NEW |