| 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/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "utility/shell_content_utility_client.cc", | 169 "utility/shell_content_utility_client.cc", |
| 170 "utility/shell_content_utility_client.h", | 170 "utility/shell_content_utility_client.h", |
| 171 ] | 171 ] |
| 172 | 172 |
| 173 configs += [ | 173 configs += [ |
| 174 ":content_shell_lib_warnings", | 174 ":content_shell_lib_warnings", |
| 175 "//build/config:precompiled_headers", | 175 "//build/config:precompiled_headers", |
| 176 | 176 |
| 177 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 177 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 178 "//build/config/compiler:no_size_t_to_int_warning", | 178 "//build/config/compiler:no_size_t_to_int_warning", |
| 179 |
| 180 "//third_party/WebKit/public:debug_devtools", |
| 179 ] | 181 ] |
| 180 | 182 |
| 181 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 183 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
| 182 | 184 |
| 183 public_deps = [ | 185 public_deps = [ |
| 184 # This exposes all public content APIs. | 186 # This exposes all public content APIs. |
| 185 "//content/public/app:both", | 187 "//content/public/app:both", |
| 186 "//content/public/browser", | 188 "//content/public/browser", |
| 187 "//content/public/common", | 189 "//content/public/common", |
| 188 "//content/public/plugin", | 190 "//content/public/plugin", |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 sources = [ | 493 sources = [ |
| 492 "app/shell_content_main.cc", | 494 "app/shell_content_main.cc", |
| 493 "app/shell_content_main.h", | 495 "app/shell_content_main.h", |
| 494 ] | 496 ] |
| 495 | 497 |
| 496 deps = [ | 498 deps = [ |
| 497 ":content_shell_lib", | 499 ":content_shell_lib", |
| 498 ] | 500 ] |
| 499 } | 501 } |
| 500 } | 502 } |
| OLD | NEW |