| 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 | 7 |
| 8 # Applied by targets internal to content. | 8 # Applied by targets internal to content. |
| 9 config("content_implementation") { | 9 config("content_implementation") { |
| 10 defines = [ "CONTENT_IMPLEMENTATION" ] | 10 defines = [ "CONTENT_IMPLEMENTATION" ] |
| 11 configs = [ "//build/config/compiler:wexit_time_destructors" ] |
| 11 } | 12 } |
| 12 | 13 |
| 13 # When targets depend on, e.g. //content/public/browser, what happens? To | 14 # When targets depend on, e.g. //content/public/browser, what happens? To |
| 14 # facilitate the complexity here, the "public" targets are groups that forward | 15 # facilitate the complexity here, the "public" targets are groups that forward |
| 15 # to the right thing depending on the build mode. Say for additional | 16 # to the right thing depending on the build mode. Say for additional |
| 16 # illustration, the public browser sources also depend on the public common | 17 # illustration, the public browser sources also depend on the public common |
| 17 # ones. | 18 # ones. |
| 18 # | 19 # |
| 19 # The non-component build is easy: | 20 # The non-component build is easy: |
| 20 # foo -> | 21 # foo -> |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 sources = [ | 141 sources = [ |
| 141 "app/sandbox_helper_win.cc", | 142 "app/sandbox_helper_win.cc", |
| 142 "public/app/sandbox_helper_win.h", | 143 "public/app/sandbox_helper_win.h", |
| 143 ] | 144 ] |
| 144 | 145 |
| 145 deps = [ | 146 deps = [ |
| 146 "//sandbox", | 147 "//sandbox", |
| 147 ] | 148 ] |
| 148 } | 149 } |
| 149 } | 150 } |
| OLD | NEW |