OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 "renderer/test_runner/web_content_settings.h", | 222 "renderer/test_runner/web_content_settings.h", |
223 "renderer/test_runner/web_frame_test_proxy.h", | 223 "renderer/test_runner/web_frame_test_proxy.h", |
224 "renderer/test_runner/web_task.cc", | 224 "renderer/test_runner/web_task.cc", |
225 "renderer/test_runner/web_task.h", | 225 "renderer/test_runner/web_task.h", |
226 "renderer/test_runner/web_test_delegate.h", | 226 "renderer/test_runner/web_test_delegate.h", |
227 "renderer/test_runner/web_test_interfaces.cc", | 227 "renderer/test_runner/web_test_interfaces.cc", |
228 "renderer/test_runner/web_test_interfaces.h", | 228 "renderer/test_runner/web_test_interfaces.h", |
229 "renderer/test_runner/web_test_proxy.cc", | 229 "renderer/test_runner/web_test_proxy.cc", |
230 "renderer/test_runner/web_test_proxy.h", | 230 "renderer/test_runner/web_test_proxy.h", |
231 "renderer/test_runner/web_test_runner.h", | 231 "renderer/test_runner/web_test_runner.h", |
| 232 "utility/shell_content_utility_client.cc", |
| 233 "utility/shell_content_utility_client.h", |
232 ] | 234 ] |
233 | 235 |
234 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 236 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
235 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 237 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
236 | 238 |
237 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 239 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
238 | 240 |
239 public_deps = [ | 241 public_deps = [ |
240 # This exposes all public content APIs. | 242 # This exposes all public content APIs. |
241 "//content/public/app:both", | 243 "//content/public/app:both", |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 | 574 |
573 deps = [ | 575 deps = [ |
574 "//base", | 576 "//base", |
575 "//components/crash/tools:crash_service", | 577 "//components/crash/tools:crash_service", |
576 ] | 578 ] |
577 | 579 |
578 configs -= [ "//build/config/win:console" ] | 580 configs -= [ "//build/config/win:console" ] |
579 configs += [ "//build/config/win:windowed" ] | 581 configs += [ "//build/config/win:windowed" ] |
580 } | 582 } |
581 } | 583 } |
OLD | NEW |