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

Side by Side Diff: third_party/WebKit/Source/platform/heap/BUILD.gn

Issue 2393363003: Fix Heap.cpp dependencies. (Closed)
Patch Set: Created 4 years, 2 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 | « no previous file | 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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 source_set("heap") { 7 source_set("heap") {
8 # This target is a logical part of the platform and only the platform target 8 # This target is a logical part of the platform and only the platform target
9 # should depend on it. 9 # should depend on it.
10 visibility = [ "//third_party/WebKit/Source/platform" ] 10 visibility = [ "//third_party/WebKit/Source/platform" ]
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 configs += [ 58 configs += [
59 "//third_party/WebKit/Source:config", 59 "//third_party/WebKit/Source:config",
60 "//third_party/WebKit/Source:non_test_config", 60 "//third_party/WebKit/Source:non_test_config",
61 "//third_party/WebKit/Source:inside_blink", 61 "//third_party/WebKit/Source:inside_blink",
62 "//third_party/WebKit/Source:features", 62 "//third_party/WebKit/Source:features",
63 "//build/config/compiler:no_size_t_to_int_warning", 63 "//build/config/compiler:no_size_t_to_int_warning",
64 ] 64 ]
65 65
66 deps = [ 66 deps = [
67 "//base", 67 "//base",
68 "//third_party/WebKit/Source/platform:make_platform_generated",
68 "//third_party/WebKit/Source/platform/heap/asm", 69 "//third_party/WebKit/Source/platform/heap/asm",
69 "//third_party/icu", 70 "//third_party/icu",
70 "//v8", 71 "//v8",
71 ] 72 ]
72 } 73 }
73 74
74 test("blink_heap_unittests") { 75 test("blink_heap_unittests") {
75 sources = [ 76 sources = [
76 "BlinkGCMemoryDumpProviderTest.cpp", 77 "BlinkGCMemoryDumpProviderTest.cpp",
77 "HeapTest.cpp", 78 "HeapTest.cpp",
(...skipping 17 matching lines...) Expand all
95 "//third_party/WebKit/Source/wtf", 96 "//third_party/WebKit/Source/wtf",
96 ] 97 ]
97 if (is_android) { 98 if (is_android) {
98 deps += [ 99 deps += [
99 "//base:base_java", 100 "//base:base_java",
100 "//content/shell/android:content_shell_assets", 101 "//content/shell/android:content_shell_assets",
101 "//net/android:net_java", 102 "//net/android:net_java",
102 ] 103 ]
103 } 104 }
104 } 105 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698