| 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:html_viewer | 5 # GYP version: mojo/mojo_services.gypi:html_viewer |
| 6 shared_library("html_viewer") { | 6 shared_library("html_viewer") { |
| 7 sources = [ | 7 sources = [ |
| 8 "blink_basic_type_converters.cc", | 8 "blink_basic_type_converters.cc", |
| 9 "blink_basic_type_converters.h", | 9 "blink_basic_type_converters.h", |
| 10 "blink_input_events_type_converters.cc", | 10 "blink_input_events_type_converters.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 include_dirs = [ "third_party/WebKit" ] | 41 include_dirs = [ "third_party/WebKit" ] |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 "//base", | 44 "//base", |
| 45 "//base/third_party/dynamic_annotations", | 45 "//base/third_party/dynamic_annotations", |
| 46 "//cc", | 46 "//cc", |
| 47 "//cc/blink", | 47 "//cc/blink", |
| 48 "//cc/surfaces", | 48 "//cc/surfaces", |
| 49 "//media", | 49 "//media", |
| 50 "//media/audio", | |
| 51 "//media/base", | |
| 52 "//media/blink", | 50 "//media/blink", |
| 53 "//media/mojo", | 51 "//media/mojo", |
| 54 "//mojo/application", | 52 "//mojo/application", |
| 55 "//mojo/cc", | 53 "//mojo/cc", |
| 56 "//mojo/common", | 54 "//mojo/common", |
| 57 "//mojo/converters/surfaces", | 55 "//mojo/converters/surfaces", |
| 58 "//mojo/public/c/system:for_shared_library", | 56 "//mojo/public/c/system:for_shared_library", |
| 59 "//mojo/public/cpp/bindings", | 57 "//mojo/public/cpp/bindings", |
| 60 "//mojo/public/cpp/utility", | 58 "//mojo/public/cpp/utility", |
| 61 "//mojo/public/interfaces/application", | 59 "//mojo/public/interfaces/application", |
| 62 "//mojo/services/public/cpp/network", | 60 "//mojo/services/public/cpp/network", |
| 63 "//mojo/services/public/cpp/view_manager", | 61 "//mojo/services/public/cpp/view_manager", |
| 64 "//mojo/services/public/interfaces/clipboard", | 62 "//mojo/services/public/interfaces/clipboard", |
| 65 "//mojo/services/public/interfaces/content_handler", | 63 "//mojo/services/public/interfaces/content_handler", |
| 66 "//mojo/services/public/interfaces/gpu", | 64 "//mojo/services/public/interfaces/gpu", |
| 67 "//mojo/services/public/interfaces/input_events:input_events", | 65 "//mojo/services/public/interfaces/input_events:input_events", |
| 68 "//mojo/services/public/interfaces/navigation", | 66 "//mojo/services/public/interfaces/navigation", |
| 69 "//mojo/services/public/interfaces/network", | 67 "//mojo/services/public/interfaces/network", |
| 70 "//mojo/services/public/interfaces/surfaces", | 68 "//mojo/services/public/interfaces/surfaces", |
| 71 "//net", | 69 "//net", |
| 72 "//skia", | 70 "//skia", |
| 73 "//third_party/WebKit/public:blink", | 71 "//third_party/WebKit/public:blink", |
| 74 "//ui/native_theme", | 72 "//ui/native_theme", |
| 75 "//url", | 73 "//url", |
| 76 ] | 74 ] |
| 77 } | 75 } |
| OLD | NEW |