OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 _inspector_protocol = "//third_party/WebKit/Source/platform/inspector_protocol" |
| 6 import("//build/config/ui.gni") |
| 7 import("$_inspector_protocol/inspector_protocol.gni") |
| 8 |
| 9 _protocol_generated = [ |
| 10 "DOM.cpp", |
| 11 "DOM.h", |
| 12 "Forward.h", |
| 13 "Protocol.cpp", |
| 14 "Protocol.h", |
| 15 ] |
| 16 |
| 17 action("protocol_compatibility") { |
| 18 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 19 script = "$_inspector_protocol/CheckProtocolCompatibility.py" |
| 20 inputs = [ |
| 21 "protocol.json", |
| 22 ] |
| 23 |
| 24 _stamp = "$target_gen_dir/protocol.stamp" |
| 25 outputs = [ |
| 26 _stamp, |
| 27 ] |
| 28 |
| 29 args = [ |
| 30 "--stamp", |
| 31 rebase_path(_stamp, root_build_dir), |
| 32 rebase_path("protocol.json", root_build_dir), |
| 33 ] |
| 34 } |
| 35 |
| 36 inspector_protocol_generate("protocol_generated_sources") { |
| 37 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 38 |
| 39 deps = [ |
| 40 ":protocol_compatibility", |
| 41 ] |
| 42 |
| 43 out_dir = target_gen_dir |
| 44 config_file = "inspector_protocol_config.json" |
| 45 inputs = [ |
| 46 "protocol.json", |
| 47 "inspector_protocol_config.json", |
| 48 ] |
| 49 |
| 50 outputs = _protocol_generated |
| 51 } |
| 52 |
| 53 source_set("devtools") { |
| 54 sources = rebase_path(_protocol_generated, ".", target_gen_dir) |
| 55 sources += [ |
| 56 "devtools_client.cc", |
| 57 "devtools_client.h", |
| 58 "devtools_server.cc", |
| 59 "devtools_server.h", |
| 60 "protocol_platform.h", |
| 61 "string_util.cc", |
| 62 "string_util.h", |
| 63 "switches.cc", |
| 64 "switches.h", |
| 65 ] |
| 66 |
| 67 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 68 |
| 69 deps = [ |
| 70 ":protocol_generated_sources", |
| 71 "//base", |
| 72 "//net:http_server", |
| 73 ] |
| 74 } |
OLD | NEW |