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("//build/config/win/manifest.gni") | 7 import("//build/config/win/manifest.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 "renderer/layout_test/test_video_frame_provider.cc", | 166 "renderer/layout_test/test_video_frame_provider.cc", |
167 "renderer/layout_test/test_video_frame_provider.h", | 167 "renderer/layout_test/test_video_frame_provider.h", |
168 "renderer/shell_content_renderer_client.cc", | 168 "renderer/shell_content_renderer_client.cc", |
169 "renderer/shell_content_renderer_client.h", | 169 "renderer/shell_content_renderer_client.h", |
170 "renderer/shell_render_view_observer.cc", | 170 "renderer/shell_render_view_observer.cc", |
171 "renderer/shell_render_view_observer.h", | 171 "renderer/shell_render_view_observer.h", |
172 "utility/shell_content_utility_client.cc", | 172 "utility/shell_content_utility_client.cc", |
173 "utility/shell_content_utility_client.h", | 173 "utility/shell_content_utility_client.h", |
174 ] | 174 ] |
175 | 175 |
176 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 176 configs += [ |
177 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 177 "//build/config:precompiled_headers", |
| 178 |
| 179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 180 "//build/config/compiler:no_size_t_to_int_warning", |
| 181 ] |
178 | 182 |
179 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 183 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
180 | 184 |
181 public_deps = [ | 185 public_deps = [ |
182 # This exposes all public content APIs. | 186 # This exposes all public content APIs. |
183 "//content/public/app:both", | 187 "//content/public/app:both", |
184 "//content/public/browser", | 188 "//content/public/browser", |
185 "//content/public/common", | 189 "//content/public/common", |
186 "//content/public/plugin", | 190 "//content/public/plugin", |
187 "//content/public/renderer", | 191 "//content/public/renderer", |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 457 |
454 deps = [ | 458 deps = [ |
455 "//base", | 459 "//base", |
456 "//components/crash/tools:crash_service", | 460 "//components/crash/tools:crash_service", |
457 ] | 461 ] |
458 | 462 |
459 configs -= [ "//build/config/win:console" ] | 463 configs -= [ "//build/config/win:console" ] |
460 configs += [ "//build/config/win:windowed" ] | 464 configs += [ "//build/config/win:windowed" ] |
461 } | 465 } |
462 } | 466 } |
OLD | NEW |