From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- third_party/python/gyp/test/same-gyp-name/src/all.gyp | 16 ++++++++++++++++ .../gyp/test/same-gyp-name/src/subdir1/executable.gyp | 15 +++++++++++++++ .../python/gyp/test/same-gyp-name/src/subdir1/main1.cc | 6 ++++++ .../gyp/test/same-gyp-name/src/subdir2/executable.gyp | 15 +++++++++++++++ .../python/gyp/test/same-gyp-name/src/subdir2/main2.cc | 6 ++++++ 5 files changed, 58 insertions(+) create mode 100644 third_party/python/gyp/test/same-gyp-name/src/all.gyp create mode 100644 third_party/python/gyp/test/same-gyp-name/src/subdir1/executable.gyp create mode 100644 third_party/python/gyp/test/same-gyp-name/src/subdir1/main1.cc create mode 100644 third_party/python/gyp/test/same-gyp-name/src/subdir2/executable.gyp create mode 100644 third_party/python/gyp/test/same-gyp-name/src/subdir2/main2.cc (limited to 'third_party/python/gyp/test/same-gyp-name/src') diff --git a/third_party/python/gyp/test/same-gyp-name/src/all.gyp b/third_party/python/gyp/test/same-gyp-name/src/all.gyp new file mode 100644 index 0000000000..229f02ea84 --- /dev/null +++ b/third_party/python/gyp/test/same-gyp-name/src/all.gyp @@ -0,0 +1,16 @@ +# Copyright (c) 2009 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'all_exes', + 'type': 'none', + 'dependencies': [ + 'subdir1/executable.gyp:*', + 'subdir2/executable.gyp:*', + ], + }, + ], +} diff --git a/third_party/python/gyp/test/same-gyp-name/src/subdir1/executable.gyp b/third_party/python/gyp/test/same-gyp-name/src/subdir1/executable.gyp new file mode 100644 index 0000000000..82483b4c69 --- /dev/null +++ b/third_party/python/gyp/test/same-gyp-name/src/subdir1/executable.gyp @@ -0,0 +1,15 @@ +# Copyright (c) 2009 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'program1', + 'type': 'executable', + 'sources': [ + 'main1.cc', + ], + }, + ], +} diff --git a/third_party/python/gyp/test/same-gyp-name/src/subdir1/main1.cc b/third_party/python/gyp/test/same-gyp-name/src/subdir1/main1.cc new file mode 100644 index 0000000000..3645558324 --- /dev/null +++ b/third_party/python/gyp/test/same-gyp-name/src/subdir1/main1.cc @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello from main1.cc\n"); + return 0; +} diff --git a/third_party/python/gyp/test/same-gyp-name/src/subdir2/executable.gyp b/third_party/python/gyp/test/same-gyp-name/src/subdir2/executable.gyp new file mode 100644 index 0000000000..e3537013eb --- /dev/null +++ b/third_party/python/gyp/test/same-gyp-name/src/subdir2/executable.gyp @@ -0,0 +1,15 @@ +# Copyright (c) 2009 Google Inc. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'program2', + 'type': 'executable', + 'sources': [ + 'main2.cc', + ], + }, + ], +} diff --git a/third_party/python/gyp/test/same-gyp-name/src/subdir2/main2.cc b/third_party/python/gyp/test/same-gyp-name/src/subdir2/main2.cc new file mode 100644 index 0000000000..0c724dee35 --- /dev/null +++ b/third_party/python/gyp/test/same-gyp-name/src/subdir2/main2.cc @@ -0,0 +1,6 @@ +#include + +int main() { + printf("Hello from main2.cc\n"); + return 0; +} -- cgit v1.2.3