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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 deps = [ | 58 deps = [ |
59 "//third_party/wayland:wayland_util", | 59 "//third_party/wayland:wayland_util", |
60 ] | 60 ] |
61 | 61 |
62 configs -= [ "//build/config/compiler:chromium_code" ] | 62 configs -= [ "//build/config/compiler:chromium_code" ] |
63 configs += [ "//build/config/compiler:no_chromium_code" ] | 63 configs += [ "//build/config/compiler:no_chromium_code" ] |
64 | 64 |
65 public_configs = [ ":viewporter_protocol_config" ] | 65 public_configs = [ ":viewporter_protocol_config" ] |
66 } | 66 } |
67 | 67 |
68 config("scaler_protocol_config") { | |
69 include_dirs = [ "include/protocol" ] | |
70 } | |
71 | |
72 source_set("scaler_protocol") { | |
73 sources = [ | |
74 "include/protocol/scaler-client-protocol.h", | |
75 "include/protocol/scaler-server-protocol.h", | |
76 "protocol/scaler-protocol.c", | |
77 ] | |
78 | |
79 deps = [ | |
80 "//third_party/wayland:wayland_util", | |
81 ] | |
82 | |
83 configs -= [ "//build/config/compiler:chromium_code" ] | |
84 configs += [ "//build/config/compiler:no_chromium_code" ] | |
85 | |
86 public_configs = [ ":scaler_protocol_config" ] | |
87 } | |
88 | |
89 config("secure_output_protocol_config") { | 68 config("secure_output_protocol_config") { |
90 include_dirs = [ "include/protocol" ] | 69 include_dirs = [ "include/protocol" ] |
91 } | 70 } |
92 | 71 |
93 source_set("secure_output_protocol") { | 72 source_set("secure_output_protocol") { |
94 sources = [ | 73 sources = [ |
95 "include/protocol/secure-output-unstable-v1-client-protocol.h", | 74 "include/protocol/secure-output-unstable-v1-client-protocol.h", |
96 "include/protocol/secure-output-unstable-v1-server-protocol.h", | 75 "include/protocol/secure-output-unstable-v1-server-protocol.h", |
97 "protocol/secure-output-protocol.c", | 76 "protocol/secure-output-protocol.c", |
98 ] | 77 ] |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 | 120 |
142 deps = [ | 121 deps = [ |
143 "//third_party/wayland:wayland_util", | 122 "//third_party/wayland:wayland_util", |
144 ] | 123 ] |
145 | 124 |
146 configs -= [ "//build/config/compiler:chromium_code" ] | 125 configs -= [ "//build/config/compiler:chromium_code" ] |
147 configs += [ "//build/config/compiler:no_chromium_code" ] | 126 configs += [ "//build/config/compiler:no_chromium_code" ] |
148 | 127 |
149 public_configs = [ ":remote_shell_protocol_config" ] | 128 public_configs = [ ":remote_shell_protocol_config" ] |
150 } | 129 } |
OLD | NEW |