| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 # File lists shared with GN build. | 7 # File lists shared with GN build. |
| 8 'chrome_common_sources': [ | 8 'chrome_common_sources': [ |
| 9 'common/all_messages.h', | 9 'common/all_messages.h', |
| 10 'common/attrition_experiments.h', | 10 'common/attrition_experiments.h', |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 ], | 615 ], |
| 616 }], | 616 }], |
| 617 ['OS=="win"', { | 617 ['OS=="win"', { |
| 618 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 618 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 619 'msvs_disabled_warnings': [4267, ], | 619 'msvs_disabled_warnings': [4267, ], |
| 620 }], | 620 }], |
| 621 ], | 621 ], |
| 622 }, | 622 }, |
| 623 { | 623 { |
| 624 # Protobuf compiler / generator for the safebrowsing client | 624 # Protobuf compiler / generator for the safebrowsing client |
| 625 # model proto and the client-side detection (csd) request | 625 # model proto, the client-side detection (csd) request |
| 626 # protocol buffer. | 626 # proto, and the download file types proto. |
| 627 | 627 |
| 628 # GN version: //chrome/common/safe_browsing:proto | 628 # GN version: //chrome/common/safe_browsing:proto |
| 629 'target_name': 'safe_browsing_proto', | 629 'target_name': 'safe_browsing_proto', |
| 630 'type': 'static_library', | 630 'type': 'static_library', |
| 631 'sources': [ | 631 'sources': [ |
| 632 'common/safe_browsing/client_model.proto', | 632 'common/safe_browsing/client_model.proto', |
| 633 'common/safe_browsing/crx_info.proto', | 633 'common/safe_browsing/crx_info.proto', |
| 634 'common/safe_browsing/csd.proto' | 634 'common/safe_browsing/csd.proto', |
| 635 'common/safe_browsing/download_file_types.proto', |
| 635 ], | 636 ], |
| 636 'variables': { | 637 'variables': { |
| 637 'proto_in_dir': 'common/safe_browsing', | 638 'proto_in_dir': 'common/safe_browsing', |
| 638 'proto_out_dir': 'chrome/common/safe_browsing', | 639 'proto_out_dir': 'chrome/common/safe_browsing', |
| 639 }, | 640 }, |
| 640 'includes': [ '../build/protoc.gypi' ], | 641 'includes': [ '../build/protoc.gypi' ], |
| 641 }, | 642 }, |
| 642 { | 643 { |
| 643 # GN version: //chrome/common:mojo_bindings | 644 # GN version: //chrome/common:mojo_bindings |
| 644 'target_name': 'common_mojo_bindings', | 645 'target_name': 'common_mojo_bindings', |
| 645 'type': 'static_library', | 646 'type': 'static_library', |
| 646 'includes': [ | 647 'includes': [ |
| 647 '../mojo/mojom_bindings_generator.gypi' | 648 '../mojo/mojom_bindings_generator.gypi' |
| 648 ], | 649 ], |
| 649 'sources': [ | 650 'sources': [ |
| 650 'common/image_decoder.mojom', | 651 'common/image_decoder.mojom', |
| 651 'common/resource_usage_reporter.mojom', | 652 'common/resource_usage_reporter.mojom', |
| 652 ], | 653 ], |
| 653 'dependencies': [ | 654 'dependencies': [ |
| 654 '../mojo/mojo_public.gyp:mojo_cpp_bindings', | 655 '../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 655 '../skia/skia.gyp:skia_mojo', | 656 '../skia/skia.gyp:skia_mojo', |
| 656 ], | 657 ], |
| 657 }, | 658 }, |
| 658 ], | 659 ], |
| 659 } | 660 } |
| OLD | NEW |