Internal configuration cleanup

PiperOrigin-RevId: 590528536
pull/35108/head
Tanvi Jagtap 1 year ago committed by Craig Tiller
parent a04188b29f
commit 8019903a44
  1. 0
      bazel/BUILD.github
  2. 0
      bazel/cc_grpc_library.github.bzl
  3. 0
      bazel/custom_exec_properties.github.bzl
  4. 0
      bazel/experiments.github.bzl
  5. 0
      bazel/generate_cc.github.bzl
  6. 0
      bazel/generate_objc.github.bzl
  7. 0
      bazel/grpc_build_system.github.bzl
  8. 0
      bazel/grpc_util.github.bzl
  9. 0
      bazel/objc_grpc_library.github.bzl
  10. 0
      bazel/protobuf.github.bzl
  11. 0
      bazel/python_rules.github.bzl
  12. 0
      grpc.github.bzl
  13. 0
      include/grpcpp/impl/codegen/config_protobuf.github.h
  14. 0
      src/compiler/config_protobuf.github.h
  15. 0
      src/core/lib/experiments/experiments.github.cc
  16. 0
      src/core/lib/experiments/experiments.github.h
  17. 0
      src/core/lib/experiments/rollouts.github.yaml
  18. 0
      src/core/lib/transport/custom_metadata.github.h
  19. 0
      src/objective-c/examples/BUILD.github
  20. 0
      src/objective-c/grpc_objc_internal_library.github.bzl
  21. 0
      src/objective-c/tests/BUILD.github
  22. 25
      src/objective-c/tests/Hosts/ios-host/AppDelegate.h
  23. 27
      src/objective-c/tests/Hosts/ios-host/AppDelegate.m
  24. 41
      src/objective-c/tests/Hosts/ios-host/Info.plist
  25. 26
      src/objective-c/tests/Hosts/ios-host/main.m
  26. 0
      src/python/grpcio/_spawn_patch.github.py
  27. 0
      test/core/util/grpc_fuzzer.github.bzl
  28. 0
      test/cpp/util/config_grpc_cli.github.h
  29. 0
      tools/codegen/core/BUILD.github

@ -1,25 +0,0 @@
/*
*
* Copyright 2019 gRPC authors.
*
* 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.
*
*/
#import <UIKit/UIKit.h>
@interface AppDelegate : UIResponder <UIApplicationDelegate>
@property(strong, nonatomic) UIWindow* window;
@end

@ -1,27 +0,0 @@
/*
*
* Copyright 2019 gRPC authors.
*
* 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.
*
*/
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
@end

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>

@ -1,26 +0,0 @@
/*
*
* Copyright 2019 gRPC authors.
*
* 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.
*
*/
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char* argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
Loading…
Cancel
Save