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("//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 Loading... |
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 } |
OLD | NEW |