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

Side by Side Diff: third_party/WebKit/Source/core/probe/BUILD.gn

Issue 2807123005: [instrumentation] Fix probe/BUILD.gn dependencies (Closed)
Patch Set: Created 3 years, 8 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("probe") { 7 blink_core_sources("probe") {
8 sources = [ 8 sources = [
9 "CoreProbes.cpp", 9 "CoreProbes.cpp",
10 "CoreProbes.h", 10 "CoreProbes.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 configs += 45 configs +=
46 core_config_add + [ "//third_party/WebKit/Source/core:core_include_dirs" ] 46 core_config_add + [ "//third_party/WebKit/Source/core:core_include_dirs" ]
47 47
48 if (is_win) { 48 if (is_win) {
49 cflags = [ "/wd4702" ] # Unreachable code. 49 cflags = [ "/wd4702" ] # Unreachable code.
50 } 50 }
51 51
52 deps = [ 52 deps = [
53 ":instrumentation_probes", 53 ":instrumentation_probes",
54 "//skia", 54 "//skia",
55 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
56 "//third_party/WebKit/Source/core:all_generators",
57 "//third_party/WebKit/Source/platform:make_platform_generated",
slan 2017/04/12 14:08:32 When we made this change locally a few days ago, I
55 "//third_party/WebKit/Source/wtf", 58 "//third_party/WebKit/Source/wtf",
56 "//v8", 59 "//v8",
57 ] 60 ]
58 } 61 }
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