| 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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 56 } |
| 57 | 57 |
| 58 source_set("lib") { | 58 source_set("lib") { |
| 59 sources = [ | 59 sources = [ |
| 60 "ax_provider_impl.cc", | 60 "ax_provider_impl.cc", |
| 61 "ax_provider_impl.h", | 61 "ax_provider_impl.h", |
| 62 "blink_basic_type_converters.cc", | 62 "blink_basic_type_converters.cc", |
| 63 "blink_basic_type_converters.h", | 63 "blink_basic_type_converters.h", |
| 64 "blink_find_type_converters.cc", | 64 "blink_find_type_converters.cc", |
| 65 "blink_find_type_converters.h", | 65 "blink_find_type_converters.h", |
| 66 "blink_input_events_type_converters.cc", | |
| 67 "blink_input_events_type_converters.h", | |
| 68 "blink_platform_impl.cc", | 66 "blink_platform_impl.cc", |
| 69 "blink_platform_impl.h", | 67 "blink_platform_impl.h", |
| 70 "blink_resource_constants.h", | 68 "blink_resource_constants.h", |
| 71 "blink_settings.cc", | 69 "blink_settings.cc", |
| 72 "blink_settings.h", | 70 "blink_settings.h", |
| 73 "blink_settings_impl.cc", | 71 "blink_settings_impl.cc", |
| 74 "blink_settings_impl.h", | 72 "blink_settings_impl.h", |
| 75 "blink_text_input_type_converters.cc", | 73 "blink_text_input_type_converters.cc", |
| 76 "blink_text_input_type_converters.h", | 74 "blink_text_input_type_converters.h", |
| 77 "blink_url_request_type_converters.cc", | 75 "blink_url_request_type_converters.cc", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "//gin", | 168 "//gin", |
| 171 "//gpu/blink:blink", | 169 "//gpu/blink:blink", |
| 172 "//gpu/command_buffer/common:gles2_utils", | 170 "//gpu/command_buffer/common:gles2_utils", |
| 173 "//media", | 171 "//media", |
| 174 "//media:shared_memory_support", | 172 "//media:shared_memory_support", |
| 175 "//media/blink", | 173 "//media/blink", |
| 176 "//media/mojo", | 174 "//media/mojo", |
| 177 "//mojo/application/public/cpp", | 175 "//mojo/application/public/cpp", |
| 178 "//mojo/application/public/interfaces", | 176 "//mojo/application/public/interfaces", |
| 179 "//mojo/common", | 177 "//mojo/common", |
| 178 "//mojo/converters/blink", |
| 180 "//mojo/converters/surfaces", | 179 "//mojo/converters/surfaces", |
| 181 "//mojo/gles2:headers", | 180 "//mojo/gles2:headers", |
| 182 "//mojo/gpu:mojo_gles2_implementation", | 181 "//mojo/gpu:mojo_gles2_implementation", |
| 183 "//mojo/logging", | 182 "//mojo/logging", |
| 184 "//mojo/message_pump", | 183 "//mojo/message_pump", |
| 185 "//mojo/platform_handle", | 184 "//mojo/platform_handle", |
| 186 "//mojo/public/cpp/environment:environment", | 185 "//mojo/public/cpp/environment:environment", |
| 187 "//mojo/services/network/public/cpp", | 186 "//mojo/services/network/public/cpp", |
| 188 "//mojo/services/network/public/interfaces", | 187 "//mojo/services/network/public/interfaces", |
| 189 "//mojo/services/tracing/public/cpp", | 188 "//mojo/services/tracing/public/cpp", |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ] | 362 ] |
| 364 | 363 |
| 365 data_deps = [ | 364 data_deps = [ |
| 366 ":html_viewer", | 365 ":html_viewer", |
| 367 ] | 366 ] |
| 368 | 367 |
| 369 if (is_linux && !is_android) { | 368 if (is_linux && !is_android) { |
| 370 data_deps += [ "//components/font_service" ] | 369 data_deps += [ "//components/font_service" ] |
| 371 } | 370 } |
| 372 } | 371 } |
| OLD | NEW |