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

Side by Side Diff: content/BUILD.gn

Issue 411283002: Remove disable-embedded-shared-worker flag and shared worker process related codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 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 | « chrome/chrome_tests_unit.gypi ('k') | 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 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_components = [ 12 content_components = [
13 "//content/app", 13 "//content/app",
14 "//content/browser", 14 "//content/browser",
15 "//content/child", 15 "//content/child",
16 "//content/gpu", 16 "//content/gpu",
17 "//content/plugin", 17 "//content/plugin",
18 "//content/ppapi_plugin", 18 "//content/ppapi_plugin",
19 "//content/public/app", 19 "//content/public/app",
20 "//content/public/browser", 20 "//content/public/browser",
21 "//content/public/child", 21 "//content/public/child",
22 "//content/public/plugin", 22 "//content/public/plugin",
23 "//content/public/renderer", 23 "//content/public/renderer",
24 "//content/renderer", 24 "//content/renderer",
25 "//content/utility", 25 "//content/utility",
26 "//content/worker",
27 ] 26 ]
28 27
29 if (is_component_build) { 28 if (is_component_build) {
30 shared_library("content") { 29 shared_library("content") {
31 deps = content_components 30 deps = content_components
32 } 31 }
33 } else { 32 } else {
34 group("content") { 33 group("content") {
35 deps = content_components 34 deps = content_components
36 } 35 }
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 import("//build/config/crypto.gni") 120 import("//build/config/crypto.gni")
122 if (use_openssl) { 121 if (use_openssl) {
123 defines += [ "WEBRTC_ANDROID_OPENSLEQS" ] 122 defines += [ "WEBRTC_ANDROID_OPENSLEQS" ]
124 } 123 }
125 } 124 }
126 125
127 if (is_posix) { 126 if (is_posix) {
128 defines += [ "WEBRTC_POSIX" ] 127 defines += [ "WEBRTC_POSIX" ]
129 } 128 }
130 } 129 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/app/content_main_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698