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 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer | 5 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer |
6 shared_library("html_viewer") { | 6 shared_library("html_viewer") { |
7 output_name = "mojo_html_viewer" | 7 output_name = "mojo_html_viewer" |
8 | 8 |
9 sources = [ | 9 sources = [ |
10 "blink_basic_type_converters.cc", | 10 "blink_basic_type_converters.cc", |
(...skipping 25 matching lines...) Expand all Loading... |
36 "webthread_impl.h", | 36 "webthread_impl.h", |
37 "weburlloader_impl.cc", | 37 "weburlloader_impl.cc", |
38 "weburlloader_impl.h", | 38 "weburlloader_impl.h", |
39 "weblayertreeview_impl.cc", | 39 "weblayertreeview_impl.cc", |
40 "weblayertreeview_impl.h", | 40 "weblayertreeview_impl.h", |
41 ] | 41 ] |
42 | 42 |
43 include_dirs = [ "third_party/WebKit" ] | 43 include_dirs = [ "third_party/WebKit" ] |
44 | 44 |
45 deps = [ | 45 deps = [ |
| 46 "//base", |
| 47 "//base/third_party/dynamic_annotations", |
46 "//cc", | 48 "//cc", |
47 "//cc/blink", | 49 "//cc/blink", |
48 "//cc/surfaces", | 50 "//cc/surfaces", |
49 "//media", | 51 "//media", |
50 "//media/audio", | 52 "//media/audio", |
51 "//media/base", | 53 "//media/base", |
52 "//media/blink", | 54 "//media/blink", |
53 "//mojo/cc", | 55 "//mojo/cc", |
54 "//mojo/common", | 56 "//mojo/common", |
55 "//mojo/application", | 57 "//mojo/application", |
(...skipping 11 matching lines...) Expand all Loading... |
67 "//mojo/services/public/interfaces/network", | 69 "//mojo/services/public/interfaces/network", |
68 "//mojo/services/public/interfaces/surfaces", | 70 "//mojo/services/public/interfaces/surfaces", |
69 "//mojo/services/public/cpp/surfaces", | 71 "//mojo/services/public/cpp/surfaces", |
70 "//net", | 72 "//net", |
71 "//skia", | 73 "//skia", |
72 "//third_party/WebKit/public:blink", | 74 "//third_party/WebKit/public:blink", |
73 "//ui/native_theme", | 75 "//ui/native_theme", |
74 "//url", | 76 "//url", |
75 ] | 77 ] |
76 } | 78 } |
OLD | NEW |