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

Unified Diff: ios/chrome/test/BUILD.gn

Issue 1452593002: Add support for building "ios_chrome_unittests" with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ui_gfx
Patch Set: Created 5 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: ios/chrome/test/BUILD.gn
diff --git a/ios/chrome/test/BUILD.gn b/ios/chrome/test/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..144082b81503f22fa6e6c953178d11a8fd02f0a0
--- /dev/null
+++ b/ios/chrome/test/BUILD.gn
@@ -0,0 +1,32 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("test") {
+ testonly = true
+ sources = [
+ "block_cleanup_test.h",
+ "block_cleanup_test.mm",
+ "ios_chrome_scoped_testing_local_state.cc",
+ "ios_chrome_scoped_testing_local_state.h",
+ "ios_chrome_unit_test_suite.cc",
+ "ios_chrome_unit_test_suite.h",
+ "run_all_unittests.cc",
+ "testing_application_context.cc",
+ "testing_application_context.h",
+ ]
+
+ deps = [
+ "//base",
+ "//base:prefs",
+ "//components/network_time",
+ "//ios/chrome/browser",
+ "//ios/public/provider/chrome/browser",
+ "//ios/public/test",
+ "//ios/web",
+ "//testing/gmock",
+ "//testing/gtest",
+ "//ui/base",
+ "//url",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698