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

Side by Side Diff: blimp/BUILD.gn

Issue 2123753005: Creating new gn arg: enable_all_proguard_optimizations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing from 2 apks to gn arg which controls optimizations Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 # Convenience meta-target for all of Blimp's production & test code. 9 # Convenience meta-target for all of Blimp's production & test code.
10 group("blimp") { 10 group("blimp") {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 } 43 }
44 44
45 # Builds all Blimp test code (unit tests, APKs). 45 # Builds all Blimp test code (unit tests, APKs).
46 group("blimp_tests") { 46 group("blimp_tests") {
47 testonly = true 47 testonly = true
48 48
49 deps = [ 49 deps = [
50 ":blimp_unittests", 50 ":blimp_unittests",
51 ] 51 ]
52 52
53 if (is_android) { 53 if (is_android && !enable_all_proguard_optimizations) {
54 deps += [ "//blimp/client:blimp_test_apk" ] 54 deps += [ "//blimp/client:blimp_test_apk" ]
55 } 55 }
56 56
57 if (is_linux) { 57 if (is_linux) {
58 deps += [ ":blimp_browsertests" ] 58 deps += [ ":blimp_browsertests" ]
59 } 59 }
60 } 60 }
61 61
62 test("blimp_unittests") { 62 test("blimp_unittests") {
63 deps = [ 63 deps = [
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 "--filelist", 171 "--filelist",
172 _rebased_dockerfile, 172 _rebased_dockerfile,
173 _rebased_dockerfile_base, 173 _rebased_dockerfile_base,
174 "--manifest", 174 "--manifest",
175 _rebased_blimp_engine_env_tests_manifest, 175 _rebased_blimp_engine_env_tests_manifest,
176 "--output", 176 "--output",
177 rebase_path(_bundle), 177 rebase_path(_bundle),
178 ] 178 ]
179 } 179 }
180 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698