Internal change.

PiperOrigin-RevId: 254810900
diff --git a/src/TulsiGeneratorIntegrationTests/Resources/PlatformDependent.BUILD b/src/TulsiGeneratorIntegrationTests/Resources/PlatformDependent.BUILD
deleted file mode 100644
index f2166e0..0000000
--- a/src/TulsiGeneratorIntegrationTests/Resources/PlatformDependent.BUILD
+++ /dev/null
@@ -1,197 +0,0 @@
-# Copyright 2016 The Tulsi 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.
-
-# Mock BUILD file for aspect testing.
-
-load(
-    "@build_bazel_rules_apple//apple:ios.bzl",
-    "ios_application",
-    "ios_extension",
-    "ios_sticker_pack_extension",
-    "ios_unit_test",
-    "ios_ui_test",
-)
-load(
-    "@build_bazel_rules_apple//apple:resources.bzl",
-    "apple_bundle_import",
-)
-load(
-    "@build_bazel_rules_swift//swift:swift.bzl",
-    "swift_library",
-)
-
-ios_application(
-    name = "SkylarkApplication",
-    bundle_id = "com.google.Tulsi.Application",
-    bundle_name = "SkylarkApp",
-    extensions = [":StickerExtension"],
-    families = ["iphone"],
-    infoplists = ["Application/Info.plist"],
-    launch_storyboard = "Application/Launch.storyboard",
-    minimum_os_version = "10.0",
-    settings_bundle = ":SettingsBundle",
-    deps = [":MainLibrary"],
-)
-
-ios_application(
-    name = "SkylarkTargetApplication",
-    bundle_id = "com.google.Tulsi.TargetApplication",
-    families = ["iphone"],
-    infoplists = ["Application/Info.plist"],
-    launch_storyboard = "Application/Launch.storyboard",
-    minimum_os_version = "10.0",
-    deps = [":MainLibrary"],
-)
-
-ios_sticker_pack_extension(
-    name = "StickerExtension",
-    bundle_id = "com.google.Tulsi.TargetApplication.extension",
-    families = ["iphone"],
-    infoplists = ["Ext-Info.plist"],
-    minimum_os_version = "10.0",
-    sticker_assets = ["Stickers.xcstickers/AppIcon.stickersiconset/asset.png"],
-)
-
-apple_bundle_import(
-    name = "SettingsBundle",
-    bundle_imports = [
-        "Settings.bundle/Root.plist",
-    ],
-)
-
-objc_library(
-    name = "MainLibrary",
-    srcs = [
-        "App/srcs/main.m",
-    ],
-    data = [
-        "App/Assets.xcassets/asset.png",
-        "App/Base.lproj/One.storyboard",
-    ] + glob(["SimpleTest.xcdatamodeld/**"]),
-    defines = [
-        "BINARY_ADDITIONAL_DEFINE",
-        "BINARY_ANOTHER_DEFINE=2",
-    ],
-    includes = ["App/includes"],
-    deps = [
-        ":Library",
-    ],
-)
-
-objc_library(
-    name = "Library",
-    srcs = [
-        "Library/srcs/SrcsHeader.h",
-        "Library/srcs/src1.m",
-        "Library/srcs/src2.m",
-        "Library/srcs/src3.m",
-        "Library/srcs/src4.m",
-    ],
-    hdrs = [
-        "Library/hdrs/HdrsHeader.h",
-    ],
-    copts = [
-        "-DLIBRARY_COPT_DEFINE",
-        "-I/Library/absolute/include/path",
-        "-Irelative/Library/include/path",
-    ],
-    data = ["Library/xibs/xib.xib"],
-    defines = ["LIBRARY_DEFINES_DEFINE=1"],
-    pch = "Library/pch/PCHFile.pch",
-    textual_hdrs = [
-        "Library/textual_hdrs/TextualHdrsHeader.h",
-    ],
-    deps = [
-        "J2ObjCLibrary",
-        ":ObjcProtos",
-    ],
-)
-
-objc_proto_library(
-    name = "ObjcProtos",
-    deps = [":Protos"],
-)
-
-proto_library(
-    name = "Protos",
-    srcs = ["ProtoFile.proto"],
-)
-
-j2objc_library(
-    name = "J2ObjCLibrary",
-    deps = [
-        ":JavaLibrary",
-    ],
-)
-
-java_library(
-    name = "JavaLibrary",
-    srcs = ["file.java"],
-)
-
-objc_library(
-    name = "XCTestCode",
-    srcs = [
-        "XCTest/srcs/XCTests.mm",
-    ],
-    deps = [
-        ":Library",
-    ],
-)
-
-objc_library(
-    name = "XCUITestCode",
-    srcs = [
-        "XCUITest/srcs/XCUITests.mm",
-    ],
-    deps = [
-        ":Library",
-    ],
-)
-
-swift_library(
-    name = "XCTestCodeSwift",
-    srcs = ["XCTest/srcs/Tests.swift"],
-)
-
-ios_unit_test(
-    name = "XCTest",
-    minimum_os_version = "10.0",
-    runner = "@build_bazel_rules_apple//apple/testing/default_runner:ios_default_runner",
-    test_host = ":SkylarkApplication",
-    deps = [
-        ":XCTestCode",
-        ":XCTestCodeSwift",
-    ],
-)
-
-ios_unit_test(
-    name = "XCTestWithNoTestHost",
-    minimum_os_version = "10.0",
-    runner = "@build_bazel_rules_apple//apple/testing/default_runner:ios_default_runner",
-    deps = [
-        ":XCTestCode",
-        ":XCTestCodeSwift",
-    ],
-)
-
-ios_ui_test(
-    name = "XCUITest",
-    minimum_os_version = "10.0",
-    runner = "@build_bazel_rules_apple//apple/testing/default_runner:ios_default_runner",
-    test_host = ":SkylarkApplication",
-    deps = [
-        ":XCUITestCode",
-    ],
-)