| 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:bluetooth", |
| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 725 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" | 725 export_define_blink = "BLINK_PLATFORM_IMPLEMENTATION=1" |
| 726 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" | 726 export_header_blink = "third_party/WebKit/public/platform/WebCommon.h" |
| 727 } | 727 } |
| 728 | 728 |
| 729 group("generate_mojo_bindings") { | 729 group("generate_mojo_bindings") { |
| 730 deps = [ | 730 deps = [ |
| 731 ":mojo_bindings_blink__generator", | 731 ":mojo_bindings_blink__generator", |
| 732 ":offscreen_canvas_mojo_bindings_blink__generator", | 732 ":offscreen_canvas_mojo_bindings_blink__generator", |
| 733 ] | 733 ] |
| 734 } | 734 } |
| OLD | NEW |