| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "public/headless_browser.h", | 234 "public/headless_browser.h", |
| 235 "public/headless_devtools_client.h", | 235 "public/headless_devtools_client.h", |
| 236 "public/headless_devtools_host.h", | 236 "public/headless_devtools_host.h", |
| 237 "public/headless_devtools_target.h", | 237 "public/headless_devtools_target.h", |
| 238 "public/headless_export.h", | 238 "public/headless_export.h", |
| 239 "public/headless_web_contents.h", | 239 "public/headless_web_contents.h", |
| 240 "public/internal/message_dispatcher.h", | 240 "public/internal/message_dispatcher.h", |
| 241 "public/internal/value_conversions.h", | 241 "public/internal/value_conversions.h", |
| 242 "public/util/error_reporter.cc", | 242 "public/util/error_reporter.cc", |
| 243 "public/util/error_reporter.h", | 243 "public/util/error_reporter.h", |
| 244 "public/util/maybe.h", | |
| 245 ] | 244 ] |
| 246 | 245 |
| 247 deps = [ | 246 deps = [ |
| 248 ":gen_devtools_client_api", | 247 ":gen_devtools_client_api", |
| 249 ":pak", | 248 ":pak", |
| 250 "//base", | 249 "//base", |
| 251 "//components/devtools_http_handler", | 250 "//components/devtools_http_handler", |
| 252 "//content/public/app:both", | 251 "//content/public/app:both", |
| 253 "//content/public/browser", | 252 "//content/public/browser", |
| 254 "//content/public/child", | 253 "//content/public/child", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 271 ":client_api_generator_tests", | 270 ":client_api_generator_tests", |
| 272 ":headless_browsertests", | 271 ":headless_browsertests", |
| 273 ":headless_unittests", | 272 ":headless_unittests", |
| 274 ] | 273 ] |
| 275 } | 274 } |
| 276 | 275 |
| 277 test("headless_unittests") { | 276 test("headless_unittests") { |
| 278 sources = [ | 277 sources = [ |
| 279 "public/domains/types_unittest.cc", | 278 "public/domains/types_unittest.cc", |
| 280 "public/util/error_reporter_unittest.cc", | 279 "public/util/error_reporter_unittest.cc", |
| 281 "public/util/maybe_unittest.cc", | |
| 282 ] | 280 ] |
| 283 | 281 |
| 284 deps = [ | 282 deps = [ |
| 285 ":headless_lib", | 283 ":headless_lib", |
| 286 "//base/test:run_all_unittests", | 284 "//base/test:run_all_unittests", |
| 287 "//base/test:test_support", | 285 "//base/test:test_support", |
| 288 "//testing/gtest", | 286 "//testing/gtest", |
| 289 ] | 287 ] |
| 290 } | 288 } |
| 291 | 289 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 sources = [ | 332 sources = [ |
| 335 "app/headless_shell.cc", | 333 "app/headless_shell.cc", |
| 336 "app/headless_shell_switches.cc", | 334 "app/headless_shell_switches.cc", |
| 337 "app/headless_shell_switches.h", | 335 "app/headless_shell_switches.h", |
| 338 ] | 336 ] |
| 339 | 337 |
| 340 deps = [ | 338 deps = [ |
| 341 "//headless:headless_lib", | 339 "//headless:headless_lib", |
| 342 ] | 340 ] |
| 343 } | 341 } |
| OLD | NEW |