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 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//ppapi/features/features.gni") |
7 | 8 |
8 # Applied by targets internal to content. | 9 # Applied by targets internal to content. |
9 config("content_implementation") { | 10 config("content_implementation") { |
10 defines = [ "CONTENT_IMPLEMENTATION" ] | 11 defines = [ "CONTENT_IMPLEMENTATION" ] |
11 configs = [ "//build/config/compiler:wexit_time_destructors" ] | 12 configs = [ "//build/config/compiler:wexit_time_destructors" ] |
12 } | 13 } |
13 | 14 |
14 # When targets depend on, e.g. //content/public/browser, what happens? To | 15 # When targets depend on, e.g. //content/public/browser, what happens? To |
15 # facilitate the complexity here, the "public" targets are groups that forward | 16 # facilitate the complexity here, the "public" targets are groups that forward |
16 # to the right thing depending on the build mode. Say for additional | 17 # to the right thing depending on the build mode. Say for additional |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 sources = [ | 146 sources = [ |
146 "app/sandbox_helper_win.cc", | 147 "app/sandbox_helper_win.cc", |
147 "public/app/sandbox_helper_win.h", | 148 "public/app/sandbox_helper_win.h", |
148 ] | 149 ] |
149 | 150 |
150 deps = [ | 151 deps = [ |
151 "//sandbox", | 152 "//sandbox", |
152 ] | 153 ] |
153 } | 154 } |
154 } | 155 } |
OLD | NEW |