| 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 = [ |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 } | 171 } |
| 172 | 172 |
| 173 config("stylus_protocol_config") { | 173 config("stylus_protocol_config") { |
| 174 include_dirs = [ "include/protocol" ] | 174 include_dirs = [ "include/protocol" ] |
| 175 } | 175 } |
| 176 | 176 |
| 177 source_set("stylus_protocol") { | 177 source_set("stylus_protocol") { |
| 178 sources = [ | 178 sources = [ |
| 179 "include/protocol/stylus-unstable-v1-client-protocol.h", | 179 "include/protocol/stylus-unstable-v1-client-protocol.h", |
| 180 "include/protocol/stylus-unstable-v1-server-protocol.h", | 180 "include/protocol/stylus-unstable-v1-server-protocol.h", |
| 181 "protocol/stylus-protocol.c", | 181 "include/protocol/stylus-unstable-v2-client-protocol.h", |
| 182 "include/protocol/stylus-unstable-v2-server-protocol.h", |
| 183 "protocol/stylus-protocol-v1.c", |
| 184 "protocol/stylus-protocol-v2.c", |
| 182 ] | 185 ] |
| 183 | 186 |
| 184 deps = [ | 187 deps = [ |
| 185 "//third_party/wayland:wayland_util", | 188 "//third_party/wayland:wayland_util", |
| 186 ] | 189 ] |
| 187 | 190 |
| 188 configs -= [ "//build/config/compiler:chromium_code" ] | 191 configs -= [ "//build/config/compiler:chromium_code" ] |
| 189 configs += [ "//build/config/compiler:no_chromium_code" ] | 192 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 190 | 193 |
| 191 public_configs = [ ":stylus_protocol_config" ] | 194 public_configs = [ ":stylus_protocol_config" ] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 204 | 207 |
| 205 deps = [ | 208 deps = [ |
| 206 "//third_party/wayland:wayland_util", | 209 "//third_party/wayland:wayland_util", |
| 207 ] | 210 ] |
| 208 | 211 |
| 209 configs -= [ "//build/config/compiler:chromium_code" ] | 212 configs -= [ "//build/config/compiler:chromium_code" ] |
| 210 configs += [ "//build/config/compiler:no_chromium_code" ] | 213 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 211 | 214 |
| 212 public_configs = [ ":keyboard_configuration_protocol_config" ] | 215 public_configs = [ ":keyboard_configuration_protocol_config" ] |
| 213 } | 216 } |
| OLD | NEW |