| 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("//third_party/webrtc/build/webrtc.gni") | 9 import("//third_party/webrtc/build/webrtc.gni") |
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 "web_ui_extension.cc", | 373 "web_ui_extension.cc", |
| 374 "web_ui_extension.h", | 374 "web_ui_extension.h", |
| 375 "web_ui_extension_data.cc", | 375 "web_ui_extension_data.cc", |
| 376 "web_ui_extension_data.h", | 376 "web_ui_extension_data.h", |
| 377 "webclipboard_impl.cc", | 377 "webclipboard_impl.cc", |
| 378 "webclipboard_impl.h", | 378 "webclipboard_impl.h", |
| 379 "webgraphicscontext3d_provider_impl.cc", | 379 "webgraphicscontext3d_provider_impl.cc", |
| 380 "webgraphicscontext3d_provider_impl.h", | 380 "webgraphicscontext3d_provider_impl.h", |
| 381 "webpublicsuffixlist_impl.cc", | 381 "webpublicsuffixlist_impl.cc", |
| 382 "webpublicsuffixlist_impl.h", | 382 "webpublicsuffixlist_impl.h", |
| 383 "webscrollbarbehavior_impl_aura.cc", | 383 "webscrollbarbehavior_impl_gtkoraura.cc", |
| 384 "webscrollbarbehavior_impl_aura.h", | 384 "webscrollbarbehavior_impl_gtkoraura.h", |
| 385 "webscrollbarbehavior_impl_mac.h", | 385 "webscrollbarbehavior_impl_mac.h", |
| 386 "webscrollbarbehavior_impl_mac.mm", | 386 "webscrollbarbehavior_impl_mac.mm", |
| 387 "websharedworker_proxy.cc", | 387 "websharedworker_proxy.cc", |
| 388 "websharedworker_proxy.h", | 388 "websharedworker_proxy.h", |
| 389 ] | 389 ] |
| 390 | 390 |
| 391 configs += [ | 391 configs += [ |
| 392 "//content:content_implementation", | 392 "//content:content_implementation", |
| 393 "//build/config/compiler:no_size_t_to_int_warning", | 393 "//build/config/compiler:no_size_t_to_int_warning", |
| 394 ] | 394 ] |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 | 475 |
| 476 if (use_external_popup_menu) { | 476 if (use_external_popup_menu) { |
| 477 sources += [ | 477 sources += [ |
| 478 "external_popup_menu.cc", | 478 "external_popup_menu.cc", |
| 479 "external_popup_menu.h", | 479 "external_popup_menu.h", |
| 480 ] | 480 ] |
| 481 } | 481 } |
| 482 | 482 |
| 483 if (is_mac) { | 483 if (is_mac) { |
| 484 sources -= [ | 484 sources -= [ |
| 485 "webscrollbarbehavior_impl_aura.cc", | 485 "webscrollbarbehavior_impl_gtkoraura.cc", |
| 486 "webscrollbarbehavior_impl_aura.h", | 486 "webscrollbarbehavior_impl_gtkoraura.h", |
| 487 ] | 487 ] |
| 488 } | 488 } |
| 489 | 489 |
| 490 if (is_android) { | 490 if (is_android) { |
| 491 # Add back the Linux file which Android shares. | 491 # Add back the Linux file which Android shares. |
| 492 set_sources_assignment_filter([]) | 492 set_sources_assignment_filter([]) |
| 493 sources += [ "render_view_linux.cc" ] | 493 sources += [ "render_view_linux.cc" ] |
| 494 | 494 |
| 495 deps += [ | 495 deps += [ |
| 496 "//third_party/android_tools:cpu_features", | 496 "//third_party/android_tools:cpu_features", |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 # For the defines in mojo_media_config. | 907 # For the defines in mojo_media_config. |
| 908 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 908 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 909 } | 909 } |
| 910 | 910 |
| 911 if (!is_component_build) { | 911 if (!is_component_build) { |
| 912 public_deps = [ | 912 public_deps = [ |
| 913 ":renderer", | 913 ":renderer", |
| 914 ] | 914 ] |
| 915 } | 915 } |
| 916 } | 916 } |
| OLD | NEW |