Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chrome/chrome_common.gypi

Issue 2014013002: Add SkBitmap StructTraits for skia::mojo::Bitmap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix return build errors. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 631 matching lines...) Expand 10 before | Expand all | Expand 10 after
642 'common/safe_browsing/csd.proto', 642 'common/safe_browsing/csd.proto',
643 'common/safe_browsing/download_file_types.proto', 643 'common/safe_browsing/download_file_types.proto',
644 ], 644 ],
645 'variables': { 645 'variables': {
646 'proto_in_dir': 'common/safe_browsing', 646 'proto_in_dir': 'common/safe_browsing',
647 'proto_out_dir': 'chrome/common/safe_browsing', 647 'proto_out_dir': 'chrome/common/safe_browsing',
648 }, 648 },
649 'includes': [ '../build/protoc.gypi' ], 649 'includes': [ '../build/protoc.gypi' ],
650 }, 650 },
651 { 651 {
652 'target_name': 'common_mojo_bindings_mojom',
653 'type': 'none',
654 'variables': {
655 'mojom_files': [
656 'common/image_decoder.mojom',
657 'common/resource_usage_reporter.mojom',
658 ],
659 'mojom_typemaps': [
660 '../skia/public/interfaces/skbitmap.typemap',
661 ],
662 },
663 'dependencies': [
664 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
665 '../skia/skia.gyp:skia_mojo',
666 ],
667 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
668 },
669 {
652 # GN version: //chrome/common:mojo_bindings 670 # GN version: //chrome/common:mojo_bindings
653 'target_name': 'common_mojo_bindings', 671 'target_name': 'common_mojo_bindings',
654 'type': 'static_library', 672 'type': 'static_library',
655 'includes': [ 673 'dependencies': [
656 '../mojo/mojom_bindings_generator.gypi' 674 'common_mojo_bindings_mojom',
675 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
676 '../skia/skia.gyp:skia',
657 ], 677 ],
658 'sources': [ 678 'export_dependent_settings': [
659 'common/image_decoder.mojom', 679 '../skia/skia.gyp:skia',
660 'common/resource_usage_reporter.mojom',
661 ],
662 'dependencies': [
663 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
664 '../skia/skia.gyp:skia_mojo',
665 ], 680 ],
666 }, 681 },
667 ], 682 ],
668 'conditions': [ 683 'conditions': [
669 ['OS == "win"', { 684 ['OS == "win"', {
670 'targets': [ 685 'targets': [
671 { 686 {
672 # GN version: //chrome/common:metrics_constants_util_win 687 # GN version: //chrome/common:metrics_constants_util_win
673 'target_name': 'metrics_constants_util_win', 688 'target_name': 'metrics_constants_util_win',
674 'type': 'static_library', 689 'type': 'static_library',
675 'sources': [ 690 'sources': [
676 'common/metrics_constants_util_win.cc', 691 'common/metrics_constants_util_win.cc',
677 'common/metrics_constants_util_win.h', 692 'common/metrics_constants_util_win.h',
678 ], 693 ],
679 'dependencies': [ 694 'dependencies': [
680 'installer_util', 695 'installer_util',
681 '../base/base.gyp:base', 696 '../base/base.gyp:base',
682 ], 697 ],
683 }, 698 },
684 ], 699 ],
685 }], 700 }],
686 ], 701 ],
687 } 702 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698