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

Unified Diff: testing/iossim/BUILD.gn

Issue 2480203002: ui: Cleanup class/struct forward declarations (Closed)
Patch Set: Sync CL to position 430550 Created 4 years, 1 month 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: testing/iossim/BUILD.gn
diff --git a/testing/iossim/BUILD.gn b/testing/iossim/BUILD.gn
index a42d4a5c372dc0fbc3d4e759d37cf12eb7c2c5fa..1991d6b714d3c77cb0bb0251f897477efe65c344 100644
--- a/testing/iossim/BUILD.gn
+++ b/testing/iossim/BUILD.gn
@@ -5,24 +5,11 @@
import("//build/config/mac/mac_sdk.gni")
if (current_toolchain == host_toolchain) {
- config("config") {
- visibility = [ ":iossim" ]
-
- include_dirs = [ "$root_gen_dir/iossim" ]
-
- # -objectForKeyedSubscript requires 10.8 or newer. Remove this override once
- # the global version of the SDK is raised.
- common_flags = [ "-mmacosx-version-min=10.8" ]
- ldflags = common_flags
- cflags_objcc = common_flags
- }
-
executable("iossim") {
sources = [
"iossim.mm",
]
libs = [ "Foundation.framework" ]
- configs += [ ":config" ]
}
} else if (current_toolchain == default_toolchain) {
copy("iossim") {

Powered by Google App Engine
This is Rietveld 408576698