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

Unified Diff: third_party/gmock/gmock.gyp

Issue 426403002: Initial commit of Crashpad (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Review fixes Created 6 years, 5 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
« no previous file with comments | « third_party/gmock/README.crashpad ('k') | third_party/gtest/README.crashpad » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/gmock/gmock.gyp
diff --git a/third_party/gmock/gmock.gyp b/third_party/gmock/gmock.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..3a1dcdad4955b8c4bac0a2db8418187d6d2b4122
--- /dev/null
+++ b/third_party/gmock/gmock.gyp
@@ -0,0 +1,152 @@
+# Copyright 2014 The Crashpad Authors. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'gmock',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../gtest/gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ 'gmock',
+ 'gmock/include',
+ ],
+ 'sources': [
+ 'gmock/include/gmock/gmock-actions.h',
+ 'gmock/include/gmock/gmock-cardinalities.h',
+ 'gmock/include/gmock/gmock-generated-actions.h',
+ 'gmock/include/gmock/gmock-generated-function-mockers.h',
+ 'gmock/include/gmock/gmock-generated-matchers.h',
+ 'gmock/include/gmock/gmock-generated-nice-strict.h',
+ 'gmock/include/gmock/gmock-matchers.h',
+ 'gmock/include/gmock/gmock-more-actions.h',
+ 'gmock/include/gmock/gmock-more-matchers.h',
+ 'gmock/include/gmock/gmock-spec-builders.h',
+ 'gmock/include/gmock/gmock.h',
+ 'gmock/include/gmock/internal/gmock-generated-internal-utils.h',
+ 'gmock/include/gmock/internal/gmock-internal-utils.h',
+ 'gmock/include/gmock/internal/gmock-port.h',
+ 'gmock/src/gmock-all.cc',
+ 'gmock/src/gmock-cardinalities.cc',
+ 'gmock/src/gmock-internal-utils.cc',
+ 'gmock/src/gmock-matchers.cc',
+ 'gmock/src/gmock-spec-builders.cc',
+ 'gmock/src/gmock.cc',
+ ],
+ 'sources!': [
+ 'gmock/src/gmock-all.cc',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'gmock/include',
+ ],
+ },
+ 'export_dependent_settings': [
+ '../gtest/gtest.gyp:gtest',
+ ],
+ },
+ {
+ 'target_name': 'gmock_main',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'gmock',
+ '../gtest/gtest.gyp:gtest',
+ ],
+ 'sources': [
+ 'gmock/src/gmock_main.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_test_executable',
+ 'type': 'none',
+ 'dependencies': [
+ 'gmock',
+ '../gtest/gtest.gyp:gtest',
+ ],
+ 'direct_dependent_settings': {
+ 'type': 'executable',
+ 'include_dirs': [
+ 'gmock',
+ ],
+ },
+ 'export_dependent_settings': [
+ 'gmock',
+ '../gtest/gtest.gyp:gtest',
+ ],
+ },
+ {
+ 'target_name': 'gmock_all_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ 'gmock_main',
+ ],
+ 'sources': [
+ 'gmock/test/gmock-actions_test.cc',
+ 'gmock/test/gmock-cardinalities_test.cc',
+ 'gmock/test/gmock-generated-actions_test.cc',
+ 'gmock/test/gmock-generated-function-mockers_test.cc',
+ 'gmock/test/gmock-generated-internal-utils_test.cc',
+ 'gmock/test/gmock-generated-matchers_test.cc',
+ 'gmock/test/gmock-internal-utils_test.cc',
+ 'gmock/test/gmock-matchers_test.cc',
+ 'gmock/test/gmock-more-actions_test.cc',
+ 'gmock/test/gmock-nice-strict_test.cc',
+ 'gmock/test/gmock-port_test.cc',
+ 'gmock/test/gmock_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_link_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ 'gmock_main',
+ ],
+ 'sources': [
+ 'gmock/test/gmock_link_test.cc',
+ 'gmock/test/gmock_link_test.h',
+ 'gmock/test/gmock_link2_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_spec_builders_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ ],
+ 'sources': [
+ 'gmock/test/gmock-spec-builders_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_stress_test',
+ 'dependencies': [
+ 'gmock_test_executable',
+ ],
+ 'sources': [
+ 'gmock/test/gmock_stress_test.cc',
+ ],
+ },
+ {
+ 'target_name': 'gmock_all_tests',
+ 'type': 'none',
+ 'dependencies': [
+ 'gmock_all_test',
+ 'gmock_link_test',
+ 'gmock_spec_builders_test',
+ 'gmock_stress_test',
+ ],
+ },
+ ],
+}
« no previous file with comments | « third_party/gmock/README.crashpad ('k') | third_party/gtest/README.crashpad » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698