| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 } | 61 } |
| 62 | 62 |
| 63 if (is_linux) { | 63 if (is_linux) { |
| 64 deps += [ ":blimp_browsertests" ] | 64 deps += [ ":blimp_browsertests" ] |
| 65 } | 65 } |
| 66 } | 66 } |
| 67 | 67 |
| 68 test("blimp_unittests") { | 68 test("blimp_unittests") { |
| 69 deps = [ | 69 deps = [ |
| 70 "//blimp/client:app_unit_tests", | 70 "//blimp/client:app_unit_tests", |
| 71 "//blimp/client:feature_unit_tests", | |
| 72 "//blimp/client/core:unit_tests", | 71 "//blimp/client/core:unit_tests", |
| 73 "//blimp/common:unit_tests", | 72 "//blimp/common:unit_tests", |
| 74 "//blimp/net:unit_tests", | 73 "//blimp/net:unit_tests", |
| 75 "//blimp/test:run_all_unittests", | 74 "//blimp/test:run_all_unittests", |
| 76 ] | 75 ] |
| 77 | 76 |
| 78 if (is_linux) { | 77 if (is_linux) { |
| 79 deps += [ "//blimp/engine:unit_tests" ] | 78 deps += [ "//blimp/engine:unit_tests" ] |
| 80 } | 79 } |
| 81 | 80 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "--output", | 242 "--output", |
| 244 rebase_path(_output_path, root_build_dir), | 243 rebase_path(_output_path, root_build_dir), |
| 245 "--target", | 244 "--target", |
| 246 rebase_path(_wrapped_script, root_build_dir), | 245 rebase_path(_wrapped_script, root_build_dir), |
| 247 "--output-directory", | 246 "--output-directory", |
| 248 rebase_path(root_out_dir, root_build_dir), | 247 rebase_path(root_out_dir, root_build_dir), |
| 249 "--flag-name=--output-linux-directory", | 248 "--flag-name=--output-linux-directory", |
| 250 ] | 249 ] |
| 251 } | 250 } |
| 252 } | 251 } |
| OLD | NEW |