Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } |
| OLD | NEW |