| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("run_all_unittests") { |
| 8 sources = [ |
| 9 "run_all_unittests.cc" |
| 10 ] |
| 11 |
| 12 deps = [ |
| 13 "//mojo/edk/system", |
| 14 ] |
| 15 } |
| 16 |
| 7 source_set("engine_browsertests") { | 17 source_set("engine_browsertests") { |
| 8 testonly = true | 18 testonly = true |
| 9 | 19 |
| 10 sources = [ | 20 sources = [ |
| 11 "browser_tests/blimp_browser_test.cc", | 21 "browser_tests/blimp_browser_test.cc", |
| 12 "browser_tests/blimp_browser_test.h", | 22 "browser_tests/blimp_browser_test.h", |
| 13 "browser_tests/blimp_test_launcher.cc", | 23 "browser_tests/blimp_test_launcher.cc", |
| 14 "browser_tests/engine_browsertest.cc", | 24 "browser_tests/engine_browsertest.cc", |
| 15 ] | 25 ] |
| 16 | 26 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 35 "//content/test:test_support", | 45 "//content/test:test_support", |
| 36 "//testing/gmock", | 46 "//testing/gmock", |
| 37 "//testing/gtest", | 47 "//testing/gtest", |
| 38 ] | 48 ] |
| 39 | 49 |
| 40 data = [ | 50 data = [ |
| 41 "data/", | 51 "data/", |
| 42 "$root_out_dir/blimp_engine.pak", | 52 "$root_out_dir/blimp_engine.pak", |
| 43 ] | 53 ] |
| 44 } | 54 } |
| OLD | NEW |