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

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: fix paths 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
« no previous file with comments | « Source/platform/heap/asm/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 24 matching lines...) Expand all
43 deps = [ 41 deps = [
44 "//third_party/WebKit/Source/core", 42 "//third_party/WebKit/Source/core",
45 "//third_party/WebKit/Source/modules", 43 "//third_party/WebKit/Source/modules",
46 "//third_party/WebKit/Source/platform:heap_unittests", 44 "//third_party/WebKit/Source/platform:heap_unittests",
47 "//third_party/WebKit/Source/platform:platform_unittests", 45 "//third_party/WebKit/Source/platform:platform_unittests",
48 "//third_party/WebKit/Source/web", 46 "//third_party/WebKit/Source/web",
49 "//third_party/WebKit/Source/wtf:wtf_unittests", 47 "//third_party/WebKit/Source/wtf:wtf_unittests",
50 ] 48 ]
51 } 49 }
52 50
53 } # !is_android
54
55 config("blink_headers_config") { 51 config("blink_headers_config") {
56 include_dirs = [ ".." ] 52 include_dirs = [ ".." ]
57 } 53 }
58 54
59 # Depend on this target to use public blink API headers for things like enums 55 # Depend on this target to use public blink API headers for things like enums
60 # and public structures without actually linking against any Blink libraries. 56 # and public structures without actually linking against any Blink libraries.
61 source_set("blink_headers") { 57 source_set("blink_headers") {
62 direct_dependent_configs = [ 58 direct_dependent_configs = [
63 ":blink_headers_config", 59 ":blink_headers_config",
64 # Blink exposes NPAPI headers in the public API. 60 # Blink exposes NPAPI headers in the public API.
(...skipping 19 matching lines...) Expand all
84 grit("resources") { 80 grit("resources") {
85 output_dir = "$root_gen_dir/blink/public/resources" 81 output_dir = "$root_gen_dir/blink/public/resources"
86 use_qualified_include = true 82 use_qualified_include = true
87 source = "blink_resources.grd" 83 source = "blink_resources.grd"
88 outputs = [ 84 outputs = [
89 "grit/blink_resources.h", 85 "grit/blink_resources.h",
90 "blink_resources.rc", 86 "blink_resources.rc",
91 "blink_resources.pak", 87 "blink_resources.pak",
92 ] 88 ]
93 } 89 }
OLDNEW
« no previous file with comments | « Source/platform/heap/asm/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698