| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") |
| 8 import("//ppapi/features/features.gni") | 8 import("//ppapi/features/features.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/webrtc/build/webrtc.gni") | 10 import("//third_party/webrtc/build/webrtc.gni") |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 "web_ui_extension.cc", | 374 "web_ui_extension.cc", |
| 375 "web_ui_extension.h", | 375 "web_ui_extension.h", |
| 376 "web_ui_extension_data.cc", | 376 "web_ui_extension_data.cc", |
| 377 "web_ui_extension_data.h", | 377 "web_ui_extension_data.h", |
| 378 "webclipboard_impl.cc", | 378 "webclipboard_impl.cc", |
| 379 "webclipboard_impl.h", | 379 "webclipboard_impl.h", |
| 380 "webgraphicscontext3d_provider_impl.cc", | 380 "webgraphicscontext3d_provider_impl.cc", |
| 381 "webgraphicscontext3d_provider_impl.h", | 381 "webgraphicscontext3d_provider_impl.h", |
| 382 "webpublicsuffixlist_impl.cc", | 382 "webpublicsuffixlist_impl.cc", |
| 383 "webpublicsuffixlist_impl.h", | 383 "webpublicsuffixlist_impl.h", |
| 384 "webscrollbarbehavior_impl_gtkoraura.cc", | 384 "webscrollbarbehavior_impl_aura.cc", |
| 385 "webscrollbarbehavior_impl_gtkoraura.h", | 385 "webscrollbarbehavior_impl_aura.h", |
| 386 "webscrollbarbehavior_impl_mac.h", | 386 "webscrollbarbehavior_impl_mac.h", |
| 387 "webscrollbarbehavior_impl_mac.mm", | 387 "webscrollbarbehavior_impl_mac.mm", |
| 388 "websharedworker_proxy.cc", | 388 "websharedworker_proxy.cc", |
| 389 "websharedworker_proxy.h", | 389 "websharedworker_proxy.h", |
| 390 ] | 390 ] |
| 391 | 391 |
| 392 configs += [ | 392 configs += [ |
| 393 "//content:content_implementation", | 393 "//content:content_implementation", |
| 394 "//build/config/compiler:no_size_t_to_int_warning", | 394 "//build/config/compiler:no_size_t_to_int_warning", |
| 395 ] | 395 ] |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 | 478 |
| 479 if (use_external_popup_menu) { | 479 if (use_external_popup_menu) { |
| 480 sources += [ | 480 sources += [ |
| 481 "external_popup_menu.cc", | 481 "external_popup_menu.cc", |
| 482 "external_popup_menu.h", | 482 "external_popup_menu.h", |
| 483 ] | 483 ] |
| 484 } | 484 } |
| 485 | 485 |
| 486 if (is_mac) { | 486 if (is_mac) { |
| 487 sources -= [ | 487 sources -= [ |
| 488 "webscrollbarbehavior_impl_gtkoraura.cc", | 488 "webscrollbarbehavior_impl_aura.cc", |
| 489 "webscrollbarbehavior_impl_gtkoraura.h", | 489 "webscrollbarbehavior_impl_aura.h", |
| 490 ] | 490 ] |
| 491 } | 491 } |
| 492 | 492 |
| 493 if (is_android) { | 493 if (is_android) { |
| 494 # Add back the Linux file which Android shares. | 494 # Add back the Linux file which Android shares. |
| 495 set_sources_assignment_filter([]) | 495 set_sources_assignment_filter([]) |
| 496 sources += [ "render_view_linux.cc" ] | 496 sources += [ "render_view_linux.cc" ] |
| 497 | 497 |
| 498 deps += [ | 498 deps += [ |
| 499 "//third_party/android_tools:cpu_features", | 499 "//third_party/android_tools:cpu_features", |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 # For the defines in mojo_media_config. | 914 # For the defines in mojo_media_config. |
| 915 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 915 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 916 } | 916 } |
| 917 | 917 |
| 918 if (!is_component_build) { | 918 if (!is_component_build) { |
| 919 public_deps = [ | 919 public_deps = [ |
| 920 ":renderer", | 920 ":renderer", |
| 921 ] | 921 ] |
| 922 } | 922 } |
| 923 } | 923 } |
| OLD | NEW |