| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//third_party/WebKit/public/public_features.gni") | 7 import("//third_party/WebKit/public/public_features.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 "platform/modules/permissions/permission.mojom", | 681 "platform/modules/permissions/permission.mojom", |
| 682 "platform/modules/permissions/permission_status.mojom", | 682 "platform/modules/permissions/permission_status.mojom", |
| 683 "platform/modules/presentation/presentation.mojom", | 683 "platform/modules/presentation/presentation.mojom", |
| 684 "platform/modules/screen_orientation/screen_orientation_lock_types.mojom", | 684 "platform/modules/screen_orientation/screen_orientation_lock_types.mojom", |
| 685 "platform/modules/sensitive_input_visibility/sensitive_input_visibility_serv
ice.mojom", | 685 "platform/modules/sensitive_input_visibility/sensitive_input_visibility_serv
ice.mojom", |
| 686 "platform/modules/serviceworker/service_worker_event_status.mojom", | 686 "platform/modules/serviceworker/service_worker_event_status.mojom", |
| 687 "platform/modules/shapedetection/barcodedetection.mojom", | 687 "platform/modules/shapedetection/barcodedetection.mojom", |
| 688 "platform/modules/shapedetection/facedetection.mojom", | 688 "platform/modules/shapedetection/facedetection.mojom", |
| 689 "platform/modules/websockets/websocket.mojom", | 689 "platform/modules/websockets/websocket.mojom", |
| 690 "platform/referrer.mojom", | 690 "platform/referrer.mojom", |
| 691 "platform/site_engagement.mojom", |
| 691 "web/window_features.mojom", | 692 "web/window_features.mojom", |
| 692 ] | 693 ] |
| 693 public_deps = [ | 694 public_deps = [ |
| 694 "//mojo/common:common_custom_types", | 695 "//mojo/common:common_custom_types", |
| 695 "//ui/gfx/geometry/mojo", | 696 "//ui/gfx/geometry/mojo", |
| 696 "//ui/gfx/geometry/mojo:mojo", | 697 "//ui/gfx/geometry/mojo:mojo", |
| 697 "//url/mojo:url_mojom_gurl", | 698 "//url/mojo:url_mojom_gurl", |
| 698 "//url/mojo:url_mojom_origin", | 699 "//url/mojo:url_mojom_origin", |
| 699 ] | 700 ] |
| 700 | 701 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 758 # relegated to a separate target to avoid duplication between the variants. | 759 # relegated to a separate target to avoid duplication between the variants. |
| 759 source_set("shared_typemap_traits") { | 760 source_set("shared_typemap_traits") { |
| 760 visibility = [ ":*" ] | 761 visibility = [ ":*" ] |
| 761 sources = [ | 762 sources = [ |
| 762 "web/WindowFeaturesStructTraits.cpp", | 763 "web/WindowFeaturesStructTraits.cpp", |
| 763 ] | 764 ] |
| 764 deps = [ | 765 deps = [ |
| 765 ":new_wrapper_types_mojo_bindings_shared__generator", | 766 ":new_wrapper_types_mojo_bindings_shared__generator", |
| 766 ] | 767 ] |
| 767 } | 768 } |
| OLD | NEW |