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

Unified Diff: blimp/BUILD.gn

Issue 2626423004: Remove all //blimp code. (Closed)
Patch Set: One last(?) `git merge` for good measure. Created 3 years, 11 months 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
« no previous file with comments | « WATCHLISTS ('k') | blimp/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/BUILD.gn
diff --git a/blimp/BUILD.gn b/blimp/BUILD.gn
deleted file mode 100644
index b209a7bb07355215131a8da9c4f674bef53a4411..0000000000000000000000000000000000000000
--- a/blimp/BUILD.gn
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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.
-
-import("//build/config/chrome_build.gni")
-import("//testing/test.gni")
-
-# Convenience meta-target for all of Blimp's production & test code.
-group("blimp") {
- # In spite of the name, this really just means that non-test targets
- # cannot depend on this one, and that it can depend on test targets,
- # which fits how we intend to use it.
- testonly = true
-
- deps = [
- ":blimp_tests",
- "//blimp/common",
- ]
-}
-
-# Builds all Blimp test code (unit tests, test APKs).
-group("blimp_tests") {
- testonly = true
-
- deps = [
- ":blimp_unittests",
- ]
-
- if (is_linux) {
- deps += [ "//blimp/test/fake_engine:fake_engine_app_tests" ]
- }
-}
-
-test("blimp_unittests") {
- deps = [
- "//blimp/common:unit_tests",
- "//blimp/test:run_all_unittests",
- ]
-
- if (is_android) {
- enable_multidex = true
- }
-}
« no previous file with comments | « WATCHLISTS ('k') | blimp/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698