| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 _inspector_protocol = "//third_party/inspector_protocol" | 5 _inspector_protocol = "//third_party/inspector_protocol" |
| 6 import("$_inspector_protocol/inspector_protocol.gni") | 6 import("$_inspector_protocol/inspector_protocol.gni") |
| 7 | 7 |
| 8 _protocol_generated = [ | 8 _protocol_generated = [ |
| 9 "CSS.cpp", | 9 "CSS.cpp", |
| 10 "CSS.h", | 10 "CSS.h", |
| 11 "DOM.cpp", | 11 "DOM.cpp", |
| 12 "DOM.h", | 12 "DOM.h", |
| 13 "Forward.h", | 13 "Forward.h", |
| 14 "Overlay.cpp", |
| 15 "Overlay.h", |
| 14 "Protocol.cpp", | 16 "Protocol.cpp", |
| 15 "Protocol.h", | 17 "Protocol.h", |
| 16 ] | 18 ] |
| 17 | 19 |
| 18 action("protocol_compatibility") { | 20 action("protocol_compatibility") { |
| 19 visibility = [ ":*" ] # Only targets in this file can depend on this. | 21 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 20 script = "$_inspector_protocol/CheckProtocolCompatibility.py" | 22 script = "$_inspector_protocol/CheckProtocolCompatibility.py" |
| 21 inputs = [ | 23 inputs = [ |
| 22 "protocol.json", | 24 "protocol.json", |
| 23 ] | 25 ] |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 cflags += [ "/wd4800" ] # Value forced to bool. | 76 cflags += [ "/wd4800" ] # Value forced to bool. |
| 75 } | 77 } |
| 76 | 78 |
| 77 deps = [ | 79 deps = [ |
| 78 ":protocol_generated_sources", | 80 ":protocol_generated_sources", |
| 79 "//base", | 81 "//base", |
| 80 "//net", | 82 "//net", |
| 81 "//net:http_server", | 83 "//net:http_server", |
| 82 ] | 84 ] |
| 83 } | 85 } |
| OLD | NEW |