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

Side by Side Diff: chrome/chrome_common.gypi

Issue 1844103004: Convert the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 'includes': [ '../build/protoc.gypi' ], 623 'includes': [ '../build/protoc.gypi' ],
624 }, 624 },
625 { 625 {
626 # GN version: //chrome/common:mojo_bindings 626 # GN version: //chrome/common:mojo_bindings
627 'target_name': 'common_mojo_bindings', 627 'target_name': 'common_mojo_bindings',
628 'type': 'static_library', 628 'type': 'static_library',
629 'includes': [ 629 'includes': [
630 '../mojo/mojom_bindings_generator.gypi' 630 '../mojo/mojom_bindings_generator.gypi'
631 ], 631 ],
632 'sources': [ 632 'sources': [
633 'common/image_decoder.mojom',
633 'common/resource_usage_reporter.mojom', 634 'common/resource_usage_reporter.mojom',
634 ], 635 ],
635 'dependencies': [ 636 'dependencies': [
636 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 637 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
638 '../skia/skia.gyp:skia_mojo',
637 ], 639 ],
638 }, 640 },
639 ], 641 ],
640 } 642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698