| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "//testing/gmock", | 130 "//testing/gmock", |
| 131 "//testing/gtest", | 131 "//testing/gtest", |
| 132 ] | 132 ] |
| 133 } | 133 } |
| 134 | 134 |
| 135 executable("headless_shell") { | 135 executable("headless_shell") { |
| 136 testonly = true | 136 testonly = true |
| 137 | 137 |
| 138 sources = [ | 138 sources = [ |
| 139 "app/headless_shell.cc", | 139 "app/headless_shell.cc", |
| 140 "app/headless_shell_switches.cc", |
| 141 "app/headless_shell_switches.h", |
| 140 ] | 142 ] |
| 141 | 143 |
| 142 deps = [ | 144 deps = [ |
| 143 "//headless:headless_lib", | 145 "//headless:headless_lib", |
| 144 ] | 146 ] |
| 145 } | 147 } |
| OLD | NEW |