| OLD | NEW | 
|---|
| 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("//testing/test.gni") | 6 import("//testing/test.gni") | 
| 7 | 7 | 
| 8 # Convenience meta-target for all of Blimp's production & test code. | 8 # Convenience meta-target for all of Blimp's production & test code. | 
| 9 group("blimp") { | 9 group("blimp") { | 
| 10   # In spite of the name, this really just means that non-test targets | 10   # In spite of the name, this really just means that non-test targets | 
| (...skipping 16 matching lines...) Expand all  Loading... | 
| 27   ] | 27   ] | 
| 28 | 28 | 
| 29   if (is_linux) { | 29   if (is_linux) { | 
| 30     deps += [ "//blimp/test/fake_engine:fake_engine_app_tests" ] | 30     deps += [ "//blimp/test/fake_engine:fake_engine_app_tests" ] | 
| 31   } | 31   } | 
| 32 } | 32 } | 
| 33 | 33 | 
| 34 test("blimp_unittests") { | 34 test("blimp_unittests") { | 
| 35   deps = [ | 35   deps = [ | 
| 36     "//blimp/common:unit_tests", | 36     "//blimp/common:unit_tests", | 
| 37     "//blimp/net:unit_tests", |  | 
| 38     "//blimp/test:run_all_unittests", | 37     "//blimp/test:run_all_unittests", | 
| 39   ] | 38   ] | 
| 40 | 39 | 
| 41   if (is_android) { | 40   if (is_android) { | 
| 42     enable_multidex = true | 41     enable_multidex = true | 
| 43   } | 42   } | 
| 44 } | 43 } | 
| OLD | NEW | 
|---|