Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: content/shell/BUILD.gn

Issue 1149833007: Embed a mojo ApplicationManager in content/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Kill ApplicationRegistry Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 "renderer/test_runner/web_content_settings.h", 226 "renderer/test_runner/web_content_settings.h",
227 "renderer/test_runner/web_frame_test_proxy.h", 227 "renderer/test_runner/web_frame_test_proxy.h",
228 "renderer/test_runner/web_task.cc", 228 "renderer/test_runner/web_task.cc",
229 "renderer/test_runner/web_task.h", 229 "renderer/test_runner/web_task.h",
230 "renderer/test_runner/web_test_delegate.h", 230 "renderer/test_runner/web_test_delegate.h",
231 "renderer/test_runner/web_test_interfaces.cc", 231 "renderer/test_runner/web_test_interfaces.cc",
232 "renderer/test_runner/web_test_interfaces.h", 232 "renderer/test_runner/web_test_interfaces.h",
233 "renderer/test_runner/web_test_proxy.cc", 233 "renderer/test_runner/web_test_proxy.cc",
234 "renderer/test_runner/web_test_proxy.h", 234 "renderer/test_runner/web_test_proxy.h",
235 "renderer/test_runner/web_test_runner.h", 235 "renderer/test_runner/web_test_runner.h",
236 "utility/shell_content_utility_client.cc",
237 "utility/shell_content_utility_client.h",
236 ] 238 ]
237 239
238 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 240 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
239 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 241 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
240 242
241 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ] 243 defines = [ "CONTENT_SHELL_VERSION=\"$content_shell_version\"" ]
242 244
243 public_deps = [ 245 public_deps = [
244 # This exposes all public content APIs. 246 # This exposes all public content APIs.
245 "//content/public/app:both", 247 "//content/public/app:both",
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 578
577 deps = [ 579 deps = [
578 "//base", 580 "//base",
579 "//components/crash/tools:crash_service", 581 "//components/crash/tools:crash_service",
580 ] 582 ]
581 583
582 configs -= [ "//build/config/win:console" ] 584 configs -= [ "//build/config/win:console" ]
583 configs += [ "//build/config/win:windowed" ] 585 configs += [ "//build/config/win:windowed" ]
584 } 586 }
585 } 587 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698