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("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 if (is_linux) { | 468 if (is_linux) { |
469 deps += [ "//build/linux:fontconfig" ] | 469 deps += [ "//build/linux:fontconfig" ] |
470 } | 470 } |
471 | 471 |
472 if (is_mac || is_win || is_android) { | 472 if (is_mac || is_win || is_android) { |
473 sources -= [ "font_list_fontconfig.cc" ] | 473 sources -= [ "font_list_fontconfig.cc" ] |
474 } | 474 } |
475 | 475 |
476 if (enable_plugins) { | 476 if (enable_plugins) { |
477 deps += [ | 477 deps += [ |
478 "//ppapi/proxy", | 478 "//ppapi/proxy:ipc", |
479 "//ppapi/shared_impl", | 479 "//ppapi/shared_impl", |
480 ] | 480 ] |
481 } else { | 481 } else { |
482 sources -= [ | 482 sources -= [ |
483 "pepper_file_util.cc", | 483 "pepper_file_util.cc", |
484 "pepper_file_util.h", | 484 "pepper_file_util.h", |
485 "pepper_plugin_list.cc", | 485 "pepper_plugin_list.cc", |
486 "pepper_plugin_list.h", | 486 "pepper_plugin_list.h", |
487 "pepper_renderer_instance_data.cc", | 487 "pepper_renderer_instance_data.cc", |
488 "pepper_renderer_instance_data.h", | 488 "pepper_renderer_instance_data.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 "//ui/gfx/geometry/mojo", | 598 "//ui/gfx/geometry/mojo", |
599 "//ui/gfx/mojo", | 599 "//ui/gfx/mojo", |
600 "//url/mojo:url_mojom_gurl", | 600 "//url/mojo:url_mojom_gurl", |
601 "//url/mojo:url_mojom_origin", | 601 "//url/mojo:url_mojom_origin", |
602 ] | 602 ] |
603 | 603 |
604 export_class_attribute = "CONTENT_EXPORT" | 604 export_class_attribute = "CONTENT_EXPORT" |
605 export_define = "CONTENT_IMPLEMENTATION=1" | 605 export_define = "CONTENT_IMPLEMENTATION=1" |
606 export_header = "content/common/content_export.h" | 606 export_header = "content/common/content_export.h" |
607 } | 607 } |
OLD | NEW |