| 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", |
| 10 "CSS.h", |
| 9 "DOM.cpp", | 11 "DOM.cpp", |
| 10 "DOM.h", | 12 "DOM.h", |
| 11 "Forward.h", | 13 "Forward.h", |
| 12 "Protocol.cpp", | 14 "Protocol.cpp", |
| 13 "Protocol.h", | 15 "Protocol.h", |
| 14 ] | 16 ] |
| 15 | 17 |
| 16 action("protocol_compatibility") { | 18 action("protocol_compatibility") { |
| 17 visibility = [ ":*" ] # Only targets in this file can depend on this. | 19 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 18 script = "$_inspector_protocol/CheckProtocolCompatibility.py" | 20 script = "$_inspector_protocol/CheckProtocolCompatibility.py" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 cflags += [ "/wd4800" ] # Value forced to bool. | 74 cflags += [ "/wd4800" ] # Value forced to bool. |
| 73 } | 75 } |
| 74 | 76 |
| 75 deps = [ | 77 deps = [ |
| 76 ":protocol_generated_sources", | 78 ":protocol_generated_sources", |
| 77 "//base", | 79 "//base", |
| 78 "//net", | 80 "//net", |
| 79 "//net:http_server", | 81 "//net:http_server", |
| 80 ] | 82 ] |
| 81 } | 83 } |
| OLD | NEW |