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

Side by Side Diff: content/BUILD.gn

Issue 551103002: Work on "gn check" of content/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 6 years, 3 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 | « no previous file | content/browser/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 }
11 11
12 content_shared_components = [ 12 content_shared_components = [
13 "//content/gpu", 13 "//content/gpu",
14 "//content/plugin", 14 "//content/plugin",
15 "//content/public/browser:sources", 15 "//content/public/browser:browser_sources",
16 "//content/public/child", 16 "//content/public/child",
17 "//content/public/common", 17 "//content/public/common",
18 "//content/public/plugin", 18 "//content/public/plugin",
19 "//content/public/renderer", 19 "//content/public/renderer",
20 "//content/public/utility", 20 "//content/public/utility",
21 "//content/renderer", 21 "//content/renderer",
22 ] 22 ]
23 23
24 if (enable_plugins) { 24 if (enable_plugins) {
25 content_shared_components += [ "//content/ppapi_plugin" ] 25 content_shared_components += [ "//content/ppapi_plugin" ]
(...skipping 24 matching lines...) Expand all
50 } 50 }
51 51
52 # This target exists to "hold" the content_export header so we can do proper 52 # This target exists to "hold" the content_export header so we can do proper
53 # inclusion testing of it. 53 # inclusion testing of it.
54 source_set("export") { 54 source_set("export") {
55 visibility = [ "//content/*" ] 55 visibility = [ "//content/*" ]
56 sources = [ 56 sources = [
57 "content/common/content_export.h" 57 "content/common/content_export.h"
58 ] 58 ]
59 } 59 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698