| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 804 "//content/test:test_support", | 804 "//content/test:test_support", |
| 805 "//testing/gmock", | 805 "//testing/gmock", |
| 806 "//testing/gtest", | 806 "//testing/gtest", |
| 807 ] | 807 ] |
| 808 | 808 |
| 809 data = [ | 809 data = [ |
| 810 "//blimp/test/data/", | 810 "//blimp/test/data/", |
| 811 "$root_out_dir/blimp_engine.pak", | 811 "$root_out_dir/blimp_engine.pak", |
| 812 ] | 812 ] |
| 813 } | 813 } |
| 814 |
| 815 source_set("browser_tests_grpc") { |
| 816 testonly = true |
| 817 sources = [ |
| 818 "browser_tests/grpc_assignment.cc", |
| 819 ] |
| 820 |
| 821 deps = [ |
| 822 ":browser_tests", |
| 823 ] |
| 824 } |
| 825 |
| 826 source_set("browser_tests_tcp") { |
| 827 testonly = true |
| 828 sources = [ |
| 829 "browser_tests/tcp_assignment.cc", |
| 830 ] |
| 831 |
| 832 deps = [ |
| 833 ":browser_tests", |
| 834 ] |
| 835 } |
| OLD | NEW |