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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 26 matching lines...) Expand all Loading... |
37 | 37 |
38 if (toolkit_views) { | 38 if (toolkit_views) { |
39 deps += [ "//ui/views/resources" ] | 39 deps += [ "//ui/views/resources" ] |
40 sources += | 40 sources += |
41 [ "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak" ] | 41 [ "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak" ] |
42 } | 42 } |
43 | 43 |
44 output = "$root_out_dir/blimp_engine.pak" | 44 output = "$root_out_dir/blimp_engine.pak" |
45 } | 45 } |
46 | 46 |
| 47 source_set("unit_tests") { |
| 48 testonly = true |
| 49 |
| 50 deps = [ |
| 51 "//blimp/engine/browser:unit_tests", |
| 52 ] |
| 53 } |
| 54 |
47 if (is_linux) { | 55 if (is_linux) { |
48 executable("blimp_engine_app") { | 56 executable("blimp_engine_app") { |
49 sources = [ | 57 sources = [ |
50 "app/blimp_main.cc", | 58 "app/blimp_main.cc", |
51 ] | 59 ] |
52 | 60 |
53 deps = [ | 61 deps = [ |
54 ":pak", | 62 ":pak", |
55 "//blimp/engine/app", | 63 "//blimp/engine/app", |
56 "//blimp/net:blimp_net", | 64 "//blimp/net:blimp_net", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 build_dir, | 104 build_dir, |
97 "--dockerfile", | 105 "--dockerfile", |
98 dockerfile, | 106 dockerfile, |
99 "--manifest", | 107 "--manifest", |
100 manifest, | 108 manifest, |
101 "--output", | 109 "--output", |
102 rebase_path(bundle), | 110 rebase_path(bundle), |
103 ] | 111 ] |
104 } | 112 } |
105 } | 113 } |
OLD | NEW |