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

Side by Side Diff: public/BUILD.gn

Issue 701043002: Get more of the mac GN build working. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update comments Created 6 years, 1 month 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/web/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 # GYP version: WebKit/public/blink.gyp:blink 7 # GYP version: WebKit/public/blink.gyp:blink
8 group("blink") { 8 group("blink") {
9 deps = [ 9 deps = [
10 ":blink_headers", 10 ":blink_headers",
(...skipping 28 matching lines...) Expand all
39 testonly = true 39 testonly = true
40 40
41 deps = [ 41 deps = [
42 "//third_party/WebKit/Source/core", 42 "//third_party/WebKit/Source/core",
43 "//third_party/WebKit/Source/modules", 43 "//third_party/WebKit/Source/modules",
44 "//third_party/WebKit/Source/platform:heap_unittests", 44 "//third_party/WebKit/Source/platform:heap_unittests",
45 "//third_party/WebKit/Source/platform:platform_unittests", 45 "//third_party/WebKit/Source/platform:platform_unittests",
46 "//third_party/WebKit/Source/web", 46 "//third_party/WebKit/Source/web",
47 "//third_party/WebKit/Source/wtf:wtf_unittests", 47 "//third_party/WebKit/Source/wtf:wtf_unittests",
48 ] 48 ]
49 if (is_mac) {
50 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
51 deps -= [
52 "//third_party/WebKit/Source/platform:heap_unittests",
53 "//third_party/WebKit/Source/platform:platform_unittests",
54 ]
55 }
49 } 56 }
50 57
51 config("blink_headers_config") { 58 config("blink_headers_config") {
52 include_dirs = [ ".." ] 59 include_dirs = [ ".." ]
53 } 60 }
54 61
55 config("debug_devtools") { 62 config("debug_devtools") {
56 if (debug_devtools) { 63 if (debug_devtools) {
57 defines = [ "DEBUG_DEVTOOLS=1" ] 64 defines = [ "DEBUG_DEVTOOLS=1" ]
58 } 65 }
(...skipping 29 matching lines...) Expand all
88 grit("resources") { 95 grit("resources") {
89 output_dir = "$root_gen_dir/blink/public/resources" 96 output_dir = "$root_gen_dir/blink/public/resources"
90 use_qualified_include = true 97 use_qualified_include = true
91 source = "blink_resources.grd" 98 source = "blink_resources.grd"
92 outputs = [ 99 outputs = [
93 "grit/blink_resources.h", 100 "grit/blink_resources.h",
94 "blink_resources.rc", 101 "blink_resources.rc",
95 "blink_resources.pak", 102 "blink_resources.pak",
96 ] 103 ]
97 } 104 }
OLDNEW
« no previous file with comments | « Source/web/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698