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

Unified Diff: ppapi/native_client/src/shared/ppapi_proxy/nacl.scons

Issue 11079003: Clean up NaCl's SCons build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/src/shared/ppapi_proxy/nacl.scons
diff --git a/ppapi/native_client/src/shared/ppapi_proxy/nacl.scons b/ppapi/native_client/src/shared/ppapi_proxy/nacl.scons
deleted file mode 100644
index 6c278885a1aeb0b830871e16f822e9fbcf9787be..0000000000000000000000000000000000000000
--- a/ppapi/native_client/src/shared/ppapi_proxy/nacl.scons
+++ /dev/null
@@ -1,125 +0,0 @@
-# -*- python -*-
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-Import('env')
-
-# Underlay $SOURCE_ROOT/gpu in this directory.
-Dir('.').addRepository(Dir('#/../gpu'))
-
-# To enable getting the generated include files and sources and also common and
-# client GPU command buffer sources.
-env.Append(CPPPATH=
- ['${SOURCE_ROOT}/native_client/src/shared/ppapi_proxy/untrusted',
- '$SOURCE_ROOT/third_party/khronos', '$SOURCE_ROOT/gpu'])
-
-env.Append(CPPDEFINES=['XP_UNIX'])
-env.FilterOut(CCFLAGS=['-Wswitch-enum'])
-env.Append(CCFLAGS=['-Wno-long-long'])
-
-command_buffer_common_srcs = [
- 'command_buffer/common/cmd_buffer_common.cc',
- 'command_buffer/common/debug_marker_manager.cc',
- 'command_buffer/common/gles2_cmd_format.cc',
- 'command_buffer/common/gles2_cmd_utils.cc',
- 'command_buffer/common/logging.cc',
- ]
-
-command_buffer_client_srcs = [
- 'command_buffer/client/atomicops.cc',
- 'command_buffer/client/cmd_buffer_helper.cc',
- 'command_buffer/client/fenced_allocator.cc',
- 'command_buffer/client/gles2_c_lib.cc',
- 'command_buffer/client/gles2_cmd_helper.cc',
- 'command_buffer/client/gles2_implementation.cc',
- 'command_buffer/client/program_info_manager.cc',
- 'command_buffer/client/gles2_lib.cc',
- 'command_buffer/client/mapped_memory.cc',
- 'command_buffer/client/query_tracker.cc',
- 'command_buffer/client/ring_buffer.cc',
- 'command_buffer/client/share_group.cc',
- 'command_buffer/client/transfer_buffer.cc',
- 'command_buffer/common/id_allocator.cc',
- ]
-
-command_buffer_srcs = command_buffer_common_srcs + command_buffer_client_srcs;
-
-libppruntime = env.NaClSdkLibrary(
- 'libppruntime',
- ['command_buffer_nacl.cc',
- 'input_event_data.cc',
- 'object_serialize.cc',
- 'plugin_callback.cc',
- 'plugin_globals.cc',
- 'plugin_instance_data.cc',
- 'plugin_main.cc',
- 'plugin_opengles.cc',
- 'plugin_ppb.cc',
- 'plugin_ppb_audio.cc',
- 'plugin_ppb_audio_config.cc',
- 'plugin_ppb_buffer.cc',
- 'plugin_ppb_core.cc',
- 'plugin_ppb_file_io.cc',
- 'plugin_ppb_file_system.cc',
- 'plugin_ppb_file_ref.cc',
- 'plugin_ppb_find.cc',
- 'plugin_ppb_font.cc',
- 'plugin_ppb_fullscreen.cc',
- 'plugin_ppb_gamepad.cc',
- 'plugin_ppb_graphics_2d.cc',
- 'plugin_ppb_graphics_3d.cc',
- 'plugin_ppb_host_resolver_private.cc',
- 'plugin_ppb_image_data.cc',
- 'plugin_ppb_input_event.cc',
- 'plugin_ppb_instance.cc',
- 'plugin_ppb_memory.cc',
- 'plugin_ppb_messaging.cc',
- 'plugin_ppb_mouse_cursor.cc',
- 'plugin_ppb_mouse_lock.cc',
- 'plugin_ppb_net_address_private.cc',
- 'plugin_ppb_network_list_private.cc',
- 'plugin_ppb_network_monitor_private.cc',
- 'plugin_ppb_tcp_server_socket_private.cc',
- 'plugin_ppb_tcp_socket_private.cc',
- 'plugin_ppb_testing.cc',
- 'plugin_ppb_udp_socket_private.cc',
- 'plugin_ppb_url_loader.cc',
- 'plugin_ppb_url_request_info.cc',
- 'plugin_ppb_url_response_info.cc',
- 'plugin_ppb_var.cc',
- 'plugin_ppb_view.cc',
- 'plugin_ppb_websocket.cc',
- 'plugin_ppb_zoom.cc',
- 'plugin_ppp_find_rpc_server.cc',
- 'plugin_ppp_input_event_rpc_server.cc',
- 'plugin_ppp_instance_rpc_server.cc',
- 'plugin_ppp_messaging_rpc_server.cc',
- 'plugin_ppp_mouse_lock_rpc_server.cc',
- 'plugin_ppp_printing_rpc_server.cc',
- 'plugin_ppp_selection_rpc_server.cc',
- 'plugin_ppp_zoom_rpc_server.cc',
- 'plugin_ppp_rpc_server.cc',
- 'plugin_resource.cc',
- 'plugin_resource_tracker.cc',
- 'plugin_upcall.cc',
- 'ppp_instance_combined.cc',
- 'proxy_var.cc',
- 'proxy_var_cache.cc',
- 'utility.cc',
- 'view_data.cc',
- # Autogenerated files
- 'ppp_rpc_server.cc',
- 'ppb_rpc_client.cc',
- 'upcall_client.cc'] + command_buffer_srcs,
- LIBS=['pthread',
- 'srpc',
- 'gio',
- 'platform',
- ])
-
-header_install = env.AddHeaderToSdk(['ppruntime.h'])
-env.AddLibraryToSdk(libppruntime)
-
-# Clients that overload main() will use ppruntime.h.
-env.Requires(libppruntime, header_install)
« no previous file with comments | « ppapi/native_client/src/shared/ppapi_proxy/build.scons ('k') | ppapi/native_client/src/trusted/plugin/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698