Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: ppapi/proxy/BUILD.gn

Issue 930753002: Sort GYP and GN files under ppapi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ppapi/ppapi_tests.gypi ('k') | ppapi/shared_impl/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("proxy_implementation") { 5 config("proxy_implementation") {
6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ] 6 defines = [ "PPAPI_PROXY_IMPLEMENTATION" ]
7 } 7 }
8 8
9 component("proxy") { 9 component("proxy") {
10 output_name = "ppapi_proxy" 10 output_name = "ppapi_proxy"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 "plugin_resource_tracker.cc", 91 "plugin_resource_tracker.cc",
92 "plugin_resource_tracker.h", 92 "plugin_resource_tracker.h",
93 "plugin_resource_var.cc", 93 "plugin_resource_var.cc",
94 "plugin_resource_var.h", 94 "plugin_resource_var.h",
95 "plugin_var_serialization_rules.cc", 95 "plugin_var_serialization_rules.cc",
96 "plugin_var_serialization_rules.h", 96 "plugin_var_serialization_rules.h",
97 "plugin_var_tracker.cc", 97 "plugin_var_tracker.cc",
98 "plugin_var_tracker.h", 98 "plugin_var_tracker.h",
99 "ppapi_command_buffer_proxy.cc", 99 "ppapi_command_buffer_proxy.cc",
100 "ppapi_command_buffer_proxy.h", 100 "ppapi_command_buffer_proxy.h",
101 "ppapi_message_utils.h",
101 "ppapi_messages.h", 102 "ppapi_messages.h",
102 "ppapi_message_utils.h",
103 "ppb_audio_proxy.cc", 103 "ppb_audio_proxy.cc",
104 "ppb_audio_proxy.h", 104 "ppb_audio_proxy.h",
105 "ppb_core_proxy.cc", 105 "ppb_core_proxy.cc",
106 "ppb_core_proxy.h", 106 "ppb_core_proxy.h",
107 "ppb_graphics_3d_proxy.cc", 107 "ppb_graphics_3d_proxy.cc",
108 "ppb_graphics_3d_proxy.h", 108 "ppb_graphics_3d_proxy.h",
109 "ppb_image_data_proxy.cc", 109 "ppb_image_data_proxy.cc",
110 "ppb_image_data_proxy.h", 110 "ppb_image_data_proxy.h",
111 "ppb_instance_proxy.cc", 111 "ppb_instance_proxy.cc",
112 "ppb_instance_proxy.h", 112 "ppb_instance_proxy.h",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 "ppb_flash_message_loop_proxy.cc", 243 "ppb_flash_message_loop_proxy.cc",
244 "ppb_flash_message_loop_proxy.h", 244 "ppb_flash_message_loop_proxy.h",
245 "ppb_video_decoder_proxy.cc", 245 "ppb_video_decoder_proxy.cc",
246 "ppb_video_decoder_proxy.h", 246 "ppb_video_decoder_proxy.h",
247 "ppp_content_decryptor_private_proxy.cc", 247 "ppp_content_decryptor_private_proxy.cc",
248 "ppp_content_decryptor_private_proxy.h", 248 "ppp_content_decryptor_private_proxy.h",
249 "ppp_instance_private_proxy.cc", 249 "ppp_instance_private_proxy.cc",
250 "ppp_instance_private_proxy.h", 250 "ppp_instance_private_proxy.h",
251 "ppp_video_decoder_proxy.cc", 251 "ppp_video_decoder_proxy.cc",
252 "ppp_video_decoder_proxy.h", 252 "ppp_video_decoder_proxy.h",
253 "talk_resource.cc",
254 "talk_resource.h",
255 "video_capture_resource.cc",
256 "video_capture_resource.h",
253 "video_decoder_resource.cc", 257 "video_decoder_resource.cc",
254 "video_decoder_resource.h", 258 "video_decoder_resource.h",
255 "video_encoder_resource.cc", 259 "video_encoder_resource.cc",
256 "video_encoder_resource.h", 260 "video_encoder_resource.h",
257 "talk_resource.cc",
258 "talk_resource.h",
259 "video_capture_resource.cc",
260 "video_capture_resource.h",
261 ] 261 ]
262 } 262 }
263 263
264 configs += [ ":proxy_implementation" ] 264 configs += [ ":proxy_implementation" ]
265 265
266 deps = [ 266 deps = [
267 "//base", 267 "//base",
268 "//base/third_party/dynamic_annotations", 268 "//base/third_party/dynamic_annotations",
269 "//gin", 269 "//gin",
270 "//gpu/command_buffer/client:gles2_implementation", 270 "//gpu/command_buffer/client:gles2_implementation",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 deps = [ 341 deps = [
342 "//base/test:test_support", 342 "//base/test:test_support",
343 "//ipc", 343 "//ipc",
344 "//ipc:test_support", 344 "//ipc:test_support",
345 "//ppapi/proxy", 345 "//ppapi/proxy",
346 "//ppapi/shared_impl", 346 "//ppapi/shared_impl",
347 "//testing/gmock", 347 "//testing/gmock",
348 "//testing/gtest", 348 "//testing/gtest",
349 ] 349 ]
350 } 350 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_tests.gypi ('k') | ppapi/shared_impl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698