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 configs += [ | 176 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
177 "//build/config:precompiled_headers", | 177 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
178 | |
179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
180 "//build/config/compiler:no_size_t_to_int_warning", | |
181 ] | |
182 | 178 |
183 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] | 179 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] |
184 | 180 |
185 public_deps = [ | 181 public_deps = [ |
186 # This exposes all public content APIs. | 182 # This exposes all public content APIs. |
187 "//content/public/app:both", | 183 "//content/public/app:both", |
188 "//content/public/browser", | 184 "//content/public/browser", |
189 "//content/public/common", | 185 "//content/public/common", |
190 "//content/public/plugin", | 186 "//content/public/plugin", |
191 "//content/public/renderer", | 187 "//content/public/renderer", |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 | 453 |
458 deps = [ | 454 deps = [ |
459 "//base", | 455 "//base", |
460 "//components/crash/tools:crash_service", | 456 "//components/crash/tools:crash_service", |
461 ] | 457 ] |
462 | 458 |
463 configs -= [ "//build/config/win:console" ] | 459 configs -= [ "//build/config/win:console" ] |
464 configs += [ "//build/config/win:windowed" ] | 460 configs += [ "//build/config/win:windowed" ] |
465 } | 461 } |
466 } | 462 } |
OLD | NEW |