| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//third_party/WebKit/Source/config.gni") | 6 import("//third_party/WebKit/Source/config.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 "platform/modules/budget_service/budget_service.mojom", | 637 "platform/modules/budget_service/budget_service.mojom", |
| 638 "platform/modules/hyphenation/hyphenation.mojom", | 638 "platform/modules/hyphenation/hyphenation.mojom", |
| 639 "platform/modules/notifications/notification.mojom", | 639 "platform/modules/notifications/notification.mojom", |
| 640 "platform/modules/notifications/notification_service.mojom", | 640 "platform/modules/notifications/notification_service.mojom", |
| 641 "platform/modules/serviceworker/service_worker_event_status.mojom", | 641 "platform/modules/serviceworker/service_worker_event_status.mojom", |
| 642 "platform/modules/wake_lock/wake_lock_service.mojom", | 642 "platform/modules/wake_lock/wake_lock_service.mojom", |
| 643 ] | 643 ] |
| 644 public_deps = [ | 644 public_deps = [ |
| 645 ":android_mojo_bindings", | 645 ":android_mojo_bindings", |
| 646 ":new_wrapper_types_mojo_bindings", | 646 ":new_wrapper_types_mojo_bindings", |
| 647 "//device/bluetooth/public/interfaces:bluetooth_mojom_bluetooth_uuid", | 647 "//device/bluetooth/public/interfaces", |
| 648 "//mojo/common:common_custom_types", | 648 "//mojo/common:common_custom_types", |
| 649 "//url/mojo:url_mojom_origin", | 649 "//url/mojo:url_mojom_origin", |
| 650 ] | 650 ] |
| 651 | 651 |
| 652 use_new_wrapper_types = false | 652 use_new_wrapper_types = false |
| 653 | 653 |
| 654 # The chromium variant must be linked with content and use the same export | 654 # The chromium variant must be linked with content and use the same export |
| 655 # settings in component build because of the WebBluetoothDeviceId typemap | 655 # settings in component build because of the WebBluetoothDeviceId typemap |
| 656 # inside content. | 656 # inside content. |
| 657 export_class_attribute = "CONTENT_EXPORT" | 657 export_class_attribute = "CONTENT_EXPORT" |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 # relegated to a separate target to avoid duplication between the variants. | 740 # relegated to a separate target to avoid duplication between the variants. |
| 741 source_set("shared_typemap_traits") { | 741 source_set("shared_typemap_traits") { |
| 742 visibility = [ ":*" ] | 742 visibility = [ ":*" ] |
| 743 sources = [ | 743 sources = [ |
| 744 "web/WindowFeaturesStructTraits.cpp", | 744 "web/WindowFeaturesStructTraits.cpp", |
| 745 ] | 745 ] |
| 746 deps = [ | 746 deps = [ |
| 747 ":new_wrapper_types_mojo_bindings__generator", | 747 ":new_wrapper_types_mojo_bindings__generator", |
| 748 ] | 748 ] |
| 749 } | 749 } |
| OLD | NEW |