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

Unified Diff: native_client_sdk/src/libraries/nacl_mounts_test/Makefile

Issue 12194030: Rename mount (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix c file. Created 7 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 side-by-side diff with in-line comments
Download patch
Index: native_client_sdk/src/libraries/nacl_mounts_test/Makefile
diff --git a/native_client_sdk/src/libraries/nacl_mounts_test/Makefile b/native_client_sdk/src/libraries/nacl_mounts_test/Makefile
deleted file mode 100644
index 2797405bedfef1af65de069a5e8d552368ba6b38..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/libraries/nacl_mounts_test/Makefile
+++ /dev/null
@@ -1,86 +0,0 @@
-# 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.
-
-#
-# GNU Make based build file. For details on GNU Make see:
-# http://www.gnu.org/software/make/manual/make.html
-#
-#
-
-
-#
-# Default configuration
-#
-# By default we will build a Debug configuration using the GCC newlib toolcahin
-# to override this, specify TOOLCHAIN=newlib|glibc or CONFIG=Debug|Release on
-# the make command-line or in this file prior to including common.mk. The
-# toolchain we use by default will be the first valid one listed
-VALID_TOOLCHAINS:=newlib glibc pnacl win
-INCLUDES+=$(NACL_SDK_ROOT)/include/gtest/internal
-
-#
-# Get pepper directory for toolchain and includes.
-#
-# If NACL_SDK_ROOT is not set, then assume it can be found relative to
-# to this Makefile.
-#
-NACL_SDK_ROOT?=$(abspath $(CURDIR)/../..)
-include $(NACL_SDK_ROOT)/tools/common.mk
-
-
-#
-# List of libraries to link against. Unlike some tools, the GCC and LLVM
-# based tools require libraries to be specified in the correct order. The
-# order should be symbol reference followed by symbol definition, with direct
-# sources to the link (object files) are left most. In this case:
-# hello_world -> ppapi_main -> ppapi_cpp -> ppapi -> pthread -> libc
-# Notice that libc is implied and come last through standard compiler/link
-# switches.
-#
-# We break this list down into two parts, the set we need to rebuild (DEPS)
-# and the set we do not.
-#
-DEPS=nacl_mounts ppapi_cpp
-# Order matters here: gtest has a "main" function that will be used if
-# referenced before ppapi.
-LIBS=gtest_ppapi $(DEPS) gmock ppapi gtest pthread
-
-#
-# Use the library dependency macro for each dependency
-#
-$(foreach dep,$(DEPS),$(eval $(call DEPEND_RULE,$(dep))))
-
-#
-# Target Name
-#
-# The base name of the final NEXE, also the name of the NMF file containing
-# the mapping between architecture and actual NEXE.
-#
-TARGET=nacl_mounts_test
-
-#
-# List of sources to compile
-#
-SOURCES:=kernel_object_test.cc kernel_proxy_mock.cc kernel_proxy_test.cc
-SOURCES+=kernel_wrap_test.cc module.cc mount_node_test.cc
-SOURCES+=mount_html5fs_test.cc mount_http_test.cc mount_test.cc path_test.cc
-SOURCES+=pepper_interface_mock.cc
-
-#
-# Use the compile macro for each source.
-#
-$(foreach src,$(SOURCES),$(eval $(call COMPILE_RULE,$(src),-Wno-switch-enum -Wno-variadic-macros)))
-
-#
-# Use the link macro for this target on the list of sources.
-#
-$(eval $(call LINK_RULE,$(TARGET),$(SOURCES),$(LIBS),$(DEPS)))
-
-#
-# Specify the NMF to be created with no additional arugments.
-#
-$(eval $(call NMF_RULE,$(TARGET),))
-
-
-

Powered by Google App Engine
This is Rietveld 408576698