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

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

Issue 1387963006: Adding error handlers to setup.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix lint errors/warnings Created 5 years, 2 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
« no previous file with comments | « content/BUILD.gn ('k') | content/app/content_main_runner.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 content_app_sources = [ 7 content_app_sources = [
8 "android/app_jni_registrar.cc", 8 "android/app_jni_registrar.cc",
9 "android/app_jni_registrar.h", 9 "android/app_jni_registrar.h",
10 "android/child_process_service.cc", 10 "android/child_process_service.cc",
(...skipping 13 matching lines...) Expand all
24 24
25 content_app_deps = [ 25 content_app_deps = [
26 "//base", 26 "//base",
27 "//base:i18n", 27 "//base:i18n",
28 28
29 # This is needed by app/content_main_runner.cc 29 # This is needed by app/content_main_runner.cc
30 # TODO(brettw) this shouldn't be here, only final executables should be 30 # TODO(brettw) this shouldn't be here, only final executables should be
31 # picking the allocator. 31 # picking the allocator.
32 "//base/allocator", 32 "//base/allocator",
33 "//content:export", 33 "//content:export",
34 "//content:startup_helper_win", 34 "//content:sandbox_helper_win",
35 "//content/public/common:common_sources", 35 "//content/public/common:common_sources",
36 "//content/public/common:mojo_bindings", 36 "//content/public/common:mojo_bindings",
37 "//crypto", 37 "//crypto",
38 "//ui/base", 38 "//ui/base",
39 "//ui/gfx", 39 "//ui/gfx",
40 "//ui/gfx/geometry", 40 "//ui/gfx/geometry",
41 ] 41 ]
42 42
43 if (is_win) { 43 if (is_win) {
44 content_app_deps += [ "//sandbox" ] 44 content_app_deps += [ "//sandbox" ]
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 source_set("child") { 104 source_set("child") {
105 visibility = [ "//content/public/app:child" ] 105 visibility = [ "//content/public/app:child" ]
106 106
107 sources = content_app_sources 107 sources = content_app_sources
108 configs += content_app_extra_configs 108 configs += content_app_extra_configs
109 deps = content_app_deps 109 deps = content_app_deps
110 110
111 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] 111 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
112 } 112 }
113 } 113 }
OLDNEW
« no previous file with comments | « content/BUILD.gn ('k') | content/app/content_main_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698