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

Side by Side Diff: content/BUILD.gn

Issue 1646853002: Add embedder api for participating in gpu logic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix crash in tests Created 4 years, 10 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/app/content_main_runner.cc » ('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 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" ]
(...skipping 25 matching lines...) Expand all
36 # to avoid dependency cycles, and external dependencies must depend on the 36 # to avoid dependency cycles, and external dependencies must depend on the
37 # //content/public/browser and similar targets to avoid double-linking (these 37 # //content/public/browser and similar targets to avoid double-linking (these
38 # targets make sure the dependency goes through the content shared library 38 # targets make sure the dependency goes through the content shared library
39 # when doing a component build). 39 # when doing a component build).
40 40
41 if (!is_nacl_nonsfi) { 41 if (!is_nacl_nonsfi) {
42 content_shared_components = [ 42 content_shared_components = [
43 "//content/gpu:gpu_sources", 43 "//content/gpu:gpu_sources",
44 "//content/public/browser:browser_sources", 44 "//content/public/browser:browser_sources",
45 "//content/public/child:child_sources", 45 "//content/public/child:child_sources",
46 "//content/public/gpu:gpu_sources",
46 "//content/public/common:common_sources", 47 "//content/public/common:common_sources",
47 "//content/public/plugin:plugin_sources", 48 "//content/public/plugin:plugin_sources",
48 "//content/public/renderer:renderer_sources", 49 "//content/public/renderer:renderer_sources",
49 "//content/public/utility:utility_sources", 50 "//content/public/utility:utility_sources",
50 ] 51 ]
51 52
52 if (enable_plugins) { 53 if (enable_plugins) {
53 content_shared_components += 54 content_shared_components +=
54 [ "//content/ppapi_plugin:ppapi_plugin_sources" ] 55 [ "//content/ppapi_plugin:ppapi_plugin_sources" ]
55 } 56 }
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 sources = [ 113 sources = [
113 "app/sandbox_helper_win.cc", 114 "app/sandbox_helper_win.cc",
114 "public/app/sandbox_helper_win.h", 115 "public/app/sandbox_helper_win.h",
115 ] 116 ]
116 117
117 deps = [ 118 deps = [
118 "//sandbox", 119 "//sandbox",
119 ] 120 ]
120 } 121 }
121 } 122 }
OLDNEW
« no previous file with comments | « no previous file | content/app/content_main_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698