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

Side by Side Diff: public/BUILD.gn

Issue 541933003: GN: Update heap stubs for android (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« Source/platform/heap/BUILD.gn ('K') | « Source/platform/heap/BUILD.gn ('k') | no next file » | 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 if (!is_android) {
8
9 # GYP version: WebKit/public/blink.gyp:blink 7 # GYP version: WebKit/public/blink.gyp:blink
10 group("blink") { 8 group("blink") {
11 deps = [ 9 deps = [
12 ":blink_headers", 10 ":blink_headers",
13 ":blink_minimal", 11 ":blink_minimal",
14 "//third_party/WebKit/Source/web", 12 "//third_party/WebKit/Source/web",
15 "//third_party/WebKit/Source/platform", 13 "//third_party/WebKit/Source/platform",
16 ] 14 ]
17 } 15 }
18 16
(...skipping 21 matching lines...) Expand all
40 deps = [ 38 deps = [
41 "//third_party/WebKit/Source/core", 39 "//third_party/WebKit/Source/core",
42 "//third_party/WebKit/Source/modules", 40 "//third_party/WebKit/Source/modules",
43 "//third_party/WebKit/Source/platform:heap_unittests", 41 "//third_party/WebKit/Source/platform:heap_unittests",
44 "//third_party/WebKit/Source/platform:platform_unittests", 42 "//third_party/WebKit/Source/platform:platform_unittests",
45 "//third_party/WebKit/Source/web", 43 "//third_party/WebKit/Source/web",
46 "//third_party/WebKit/Source/wtf:wtf_unittests", 44 "//third_party/WebKit/Source/wtf:wtf_unittests",
47 ] 45 ]
48 } 46 }
49 47
50 } # !is_android
51
52 config("blink_headers_config") { 48 config("blink_headers_config") {
53 include_dirs = [ ".." ] 49 include_dirs = [ ".." ]
54 } 50 }
55 51
56 # Depend on this target to use public blink API headers for things like enums 52 # Depend on this target to use public blink API headers for things like enums
57 # and public structures without actually linking against any Blink libraries. 53 # and public structures without actually linking against any Blink libraries.
58 source_set("blink_headers") { 54 source_set("blink_headers") {
59 direct_dependent_configs = [ 55 direct_dependent_configs = [
60 ":blink_headers_config", 56 ":blink_headers_config",
61 # Blink exposes NPAPI headers in the public API. 57 # Blink exposes NPAPI headers in the public API.
(...skipping 19 matching lines...) Expand all
81 grit("resources") { 77 grit("resources") {
82 output_dir = "$root_gen_dir/blink/public/resources" 78 output_dir = "$root_gen_dir/blink/public/resources"
83 use_qualified_include = true 79 use_qualified_include = true
84 source = "blink_resources.grd" 80 source = "blink_resources.grd"
85 outputs = [ 81 outputs = [
86 "grit/blink_resources.h", 82 "grit/blink_resources.h",
87 "blink_resources.rc", 83 "blink_resources.rc",
88 "blink_resources.pak", 84 "blink_resources.pak",
89 ] 85 ]
90 } 86 }
OLDNEW
« Source/platform/heap/BUILD.gn ('K') | « Source/platform/heap/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698