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

Side by Side Diff: content/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 | « components/nacl/loader/nacl_helper_win_64.cc ('k') | content/app/BUILD.gn » ('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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 # Applied by targets internal to content. 7 # Applied by targets internal to content.
8 config("content_implementation") { 8 config("content_implementation") {
9 defines = [ "CONTENT_IMPLEMENTATION" ] 9 defines = [ "CONTENT_IMPLEMENTATION" ]
10 } 10 }
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 source_set("export") { 79 source_set("export") {
80 visibility = [ "//content/*" ] 80 visibility = [ "//content/*" ]
81 sources = [ 81 sources = [
82 "common/content_export.h", 82 "common/content_export.h",
83 ] 83 ]
84 } 84 }
85 85
86 # In the GYP build, this file is listed in several targets. In GN just have 86 # In the GYP build, this file is listed in several targets. In GN just have
87 # those targets depend on this one. This can be depended on for any 87 # those targets depend on this one. This can be depended on for any
88 # platform for simplicity, and is a no-op on non-Windows. 88 # platform for simplicity, and is a no-op on non-Windows.
89 source_set("startup_helper_win") { 89 source_set("sandbox_helper_win") {
90 if (is_win) { 90 if (is_win) {
91 sources = [ 91 sources = [
92 "app/startup_helper_win.cc", 92 "app/sandbox_helper_win.cc",
93 "public/app/startup_helper_win.h", 93 "public/app/sandbox_helper_win.h",
94 ] 94 ]
95 95
96 deps = [ 96 deps = [
97 "//base",
98 "//base:i18n",
99 "//sandbox", 97 "//sandbox",
100 ] 98 ]
101 } 99 }
102 } 100 }
OLDNEW
« no previous file with comments | « components/nacl/loader/nacl_helper_win_64.cc ('k') | content/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698