OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//mojo/public/mojo.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
7 | 7 |
8 action("generate_blink_resource_map") { | 8 action("generate_blink_resource_map") { |
9 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" | 9 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" |
10 args = [ | 10 args = [ |
11 "--pak-file", | 11 "--pak-file", |
12 rebase_path("$root_out_dir/gen/blink/public/resources/blink_resources.pak"), | 12 rebase_path("$root_out_dir/gen/blink/public/resources/blink_resources.pak"), |
13 "--header", | 13 "--header", |
14 rebase_path("$target_gen_dir/blink_resource_map.h"), | 14 rebase_path("$target_gen_dir/blink_resource_map.h"), |
15 "--cpp", | 15 "--cpp", |
16 rebase_path("$target_gen_dir/blink_resource_map.cc"), | 16 rebase_path("$target_gen_dir/blink_resource_map.cc"), |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "//cc/blink", | 74 "//cc/blink", |
75 "//cc/surfaces", | 75 "//cc/surfaces", |
76 "//gin", | 76 "//gin", |
77 "//media", | 77 "//media", |
78 "//media/blink", | 78 "//media/blink", |
79 "//media/mojo", | 79 "//media/mojo", |
80 "//mojo/application", | 80 "//mojo/application", |
81 "//mojo/cc", | 81 "//mojo/cc", |
82 "//mojo/common", | 82 "//mojo/common", |
83 "//mojo/converters/surfaces", | 83 "//mojo/converters/surfaces", |
84 "//mojo/public/c/system:for_shared_library", | |
85 "//mojo/public/cpp/utility", | |
86 "//mojo/public/interfaces/application", | |
87 "//mojo/services/network/public/cpp", | 84 "//mojo/services/network/public/cpp", |
88 "//mojo/services/accessibility/public/interfaces", | 85 "//mojo/services/accessibility/public/interfaces", |
89 "//mojo/services/clipboard/public/interfaces", | 86 "//mojo/services/clipboard/public/interfaces", |
90 "//mojo/services/content_handler/public/interfaces", | 87 "//mojo/services/content_handler/public/interfaces", |
91 "//mojo/services/gpu/public/interfaces", | 88 "//mojo/services/gpu/public/interfaces", |
92 "//mojo/services/input_events/public/interfaces", | 89 "//mojo/services/input_events/public/interfaces", |
93 "//mojo/services/navigation/public/interfaces", | 90 "//mojo/services/navigation/public/interfaces", |
94 "//mojo/services/network/public/interfaces", | 91 "//mojo/services/network/public/interfaces", |
95 "//mojo/services/surfaces/public/interfaces", | 92 "//mojo/services/surfaces/public/interfaces", |
96 "//net", | 93 "//net", |
97 "//skia", | 94 "//skia", |
| 95 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 96 "//third_party/mojo/src/mojo/public/cpp/utility", |
| 97 "//third_party/mojo/src/mojo/public/interfaces/application", |
98 "//ui/native_theme", | 98 "//ui/native_theme", |
99 "//url", | 99 "//url", |
100 ] | 100 ] |
101 | 101 |
102 public_deps = [ | 102 public_deps = [ |
103 "//mojo/public/cpp/bindings", | |
104 "//mojo/services/view_manager/public/cpp", | 103 "//mojo/services/view_manager/public/cpp", |
105 "//third_party/WebKit/public:blink", | 104 "//third_party/WebKit/public:blink", |
| 105 "//third_party/mojo/src/mojo/public/cpp/bindings", |
106 ":generate_blink_resource_map", | 106 ":generate_blink_resource_map", |
107 ] | 107 ] |
108 } | 108 } |
109 | 109 |
110 mojo_native_application("html_viewer") { | 110 mojo_native_application("html_viewer") { |
111 sources = [ | 111 sources = [ |
112 "html_viewer.cc", | 112 "html_viewer.cc", |
113 ] | 113 ] |
114 deps = [ | 114 deps = [ |
115 ":lib", | 115 ":lib", |
116 ] | 116 ] |
117 } | 117 } |
118 | 118 |
119 test("tests") { | 119 test("tests") { |
120 output_name = "html_viewer_unittests" | 120 output_name = "html_viewer_unittests" |
121 sources = [ | 121 sources = [ |
122 "ax_provider_impl_unittest.cc", | 122 "ax_provider_impl_unittest.cc", |
123 ] | 123 ] |
124 deps = [ | 124 deps = [ |
125 ":lib", | 125 ":lib", |
126 "//base/test:run_all_unittests", | 126 "//base/test:run_all_unittests", |
127 ] | 127 ] |
128 } | 128 } |
OLD | NEW |