| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 if (!is_android) { | 5 if (!is_android) { |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//chrome/common/features.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 8 } | 9 } |
| 9 | 10 |
| 10 action("devtools_protocol_constants") { | 11 action("devtools_protocol_constants") { |
| 11 script = "devtools_protocol_constants_generator.py" | 12 script = "devtools_protocol_constants_generator.py" |
| 12 deps = [ | 13 deps = [ |
| 13 "//third_party/WebKit/Source/core/inspector:protocol_version", | 14 "//third_party/WebKit/Source/core/inspector:protocol_version", |
| 14 ] | 15 ] |
| 15 blink_protocol = "$root_gen_dir/blink/core/inspector/protocol.json" | 16 blink_protocol = "$root_gen_dir/blink/core/inspector/protocol.json" |
| 16 inputs = [ | 17 inputs = [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "remote_debugging_server.h", | 129 "remote_debugging_server.h", |
| 129 ] | 130 ] |
| 130 if (enable_service_discovery) { | 131 if (enable_service_discovery) { |
| 131 sources += [ | 132 sources += [ |
| 132 "device/cast_device_provider.cc", | 133 "device/cast_device_provider.cc", |
| 133 "device/cast_device_provider.h", | 134 "device/cast_device_provider.h", |
| 134 ] | 135 ] |
| 135 } | 136 } |
| 136 } | 137 } |
| 137 } | 138 } |
| OLD | NEW |