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: public/BUILD.gn

Issue 1136343002: Remove blink_tests target. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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 | « no previous file | public/all.gyp » ('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 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 25 matching lines...) Expand all
36 "//third_party/WebKit/Source/web:test_support", 36 "//third_party/WebKit/Source/web:test_support",
37 ] 37 ]
38 } 38 }
39 39
40 # GYP version: WebKit/public/all.gyp:all_blink 40 # GYP version: WebKit/public/all.gyp:all_blink
41 group("all_blink") { 41 group("all_blink") {
42 # This includes some test targets. Don't link into production! 42 # This includes some test targets. Don't link into production!
43 testonly = true 43 testonly = true
44 44
45 deps = [ 45 deps = [
46 ":blink_tests",
47 "//third_party/WebKit/Source/core", 46 "//third_party/WebKit/Source/core",
48 "//third_party/WebKit/Source/modules", 47 "//third_party/WebKit/Source/modules",
49 "//third_party/WebKit/Source/web",
50 ]
51 }
52
53 group("blink_tests") {
54 testonly = true
55
56 deps = [
57 "//third_party/WebKit/Source/platform:heap_unittests", 48 "//third_party/WebKit/Source/platform:heap_unittests",
58 "//third_party/WebKit/Source/platform:platform_unittests", 49 "//third_party/WebKit/Source/platform:platform_unittests",
50 "//third_party/WebKit/Source/web",
59 "//third_party/WebKit/Source/web:webkit_unit_tests", 51 "//third_party/WebKit/Source/web:webkit_unit_tests",
60 "//third_party/WebKit/Source/wtf:wtf_unittests", 52 "//third_party/WebKit/Source/wtf:wtf_unittests",
61 ] 53 ]
62 54
63 if (is_mac) { 55 if (is_mac) {
64 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. 56 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac.
65 deps -= [ 57 deps -= [
66 "//third_party/WebKit/Source/platform:heap_unittests", 58 "//third_party/WebKit/Source/platform:heap_unittests",
67 "//third_party/WebKit/Source/platform:platform_unittests", 59 "//third_party/WebKit/Source/platform:platform_unittests",
68 "//third_party/WebKit/Source/web:webkit_unit_tests", 60 "//third_party/WebKit/Source/web:webkit_unit_tests",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 grit("image_resources") { 137 grit("image_resources") {
146 output_dir = "$root_gen_dir/blink/public/resources" 138 output_dir = "$root_gen_dir/blink/public/resources"
147 use_qualified_include = true 139 use_qualified_include = true
148 source = "blink_image_resources.grd" 140 source = "blink_image_resources.grd"
149 outputs = [ 141 outputs = [
150 "grit/blink_image_resources.h", 142 "grit/blink_image_resources.h",
151 "blink_image_resources_100_percent.pak", 143 "blink_image_resources_100_percent.pak",
152 "blink_image_resources_200_percent.pak", 144 "blink_image_resources_200_percent.pak",
153 ] 145 ]
154 } 146 }
OLDNEW
« no previous file with comments | « no previous file | public/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698