| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 config("xdg_shell_protocol_config") { | 5 config("xdg_shell_protocol_config") { |
| 6 include_dirs = [ "include/protocol" ] | 6 include_dirs = [ "include/protocol" ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("xdg_shell_protocol") { | 9 source_set("xdg_shell_protocol") { |
| 10 sources = [ | 10 sources = [ |
| 11 "include/protocol/xdg-shell-unstable-v5-client-protocol.h", | 11 "include/protocol/xdg-shell-unstable-v5-client-protocol.h", |
| 12 "include/protocol/xdg-shell-unstable-v5-server-protocol.h", | 12 "include/protocol/xdg-shell-unstable-v5-server-protocol.h", |
| 13 "protocol/xdg-shell-protocol.c", | 13 "include/protocol/xdg-shell-unstable-v6-client-protocol.h", |
| 14 "include/protocol/xdg-shell-unstable-v6-server-protocol.h", |
| 15 "protocol/xdg-shell-v5-protocol.c", |
| 16 "protocol/xdg-shell-v6-protocol.c", |
| 14 ] | 17 ] |
| 15 | 18 |
| 16 deps = [ | 19 deps = [ |
| 17 "//third_party/wayland:wayland_util", | 20 "//third_party/wayland:wayland_util", |
| 18 ] | 21 ] |
| 19 | 22 |
| 20 configs -= [ "//build/config/compiler:chromium_code" ] | 23 configs -= [ "//build/config/compiler:chromium_code" ] |
| 21 configs += [ "//build/config/compiler:no_chromium_code" ] | 24 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 22 | 25 |
| 23 public_configs = [ ":xdg_shell_protocol_config" ] | 26 public_configs = [ ":xdg_shell_protocol_config" ] |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 | 231 |
| 229 deps = [ | 232 deps = [ |
| 230 "//third_party/wayland:wayland_util", | 233 "//third_party/wayland:wayland_util", |
| 231 ] | 234 ] |
| 232 | 235 |
| 233 configs -= [ "//build/config/compiler:chromium_code" ] | 236 configs -= [ "//build/config/compiler:chromium_code" ] |
| 234 configs += [ "//build/config/compiler:no_chromium_code" ] | 237 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 235 | 238 |
| 236 public_configs = [ ":keyboard_configuration_protocol_config" ] | 239 public_configs = [ ":keyboard_configuration_protocol_config" ] |
| 237 } | 240 } |
| OLD | NEW |