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

Side by Side Diff: chrome/chrome_common.gypi

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
654 ['use_system_nspr==1', { 654 ['use_system_nspr==1', {
655 'dependencies': [ 655 'dependencies': [
656 '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr', 656 '<(DEPTH)/base/third_party/nspr/nspr.gyp:nspr',
657 ], 657 ],
658 }], 658 }],
659 ['enable_webrtc==0', { 659 ['enable_webrtc==0', {
660 'sources!': [ 660 'sources!': [
661 'common/media/webrtc_logging_messages.h', 661 'common/media/webrtc_logging_messages.h',
662 ] 662 ]
663 }], 663 }],
664 ['enable_printing==0', {
665 'sources!': [
666 'common/print_messages.cc',
667 'common/print_messages.h',
668 ]
669 }],
664 ], 670 ],
665 'target_conditions': [ 671 'target_conditions': [
666 ['OS == "ios"', { 672 ['OS == "ios"', {
667 'sources/': [ 673 'sources/': [
668 # Pull in specific Mac files for iOS (which have been filtered out 674 # Pull in specific Mac files for iOS (which have been filtered out
669 # by file name rules). 675 # by file name rules).
670 ['include', '^common/chrome_version_info_mac\\.mm$'], 676 ['include', '^common/chrome_version_info_mac\\.mm$'],
671 ['include', '^common/mac/nscoder_util\\.'], 677 ['include', '^common/mac/nscoder_util\\.'],
672 ], 678 ],
673 }], 679 }],
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 'common/metrics/proto/user_action_event.proto', 851 'common/metrics/proto/user_action_event.proto',
846 ], 852 ],
847 'variables': { 853 'variables': {
848 'proto_in_dir': 'common/metrics/proto', 854 'proto_in_dir': 'common/metrics/proto',
849 'proto_out_dir': 'chrome/common/metrics/proto', 855 'proto_out_dir': 'chrome/common/metrics/proto',
850 }, 856 },
851 'includes': [ '../build/protoc.gypi' ], 857 'includes': [ '../build/protoc.gypi' ],
852 }, 858 },
853 ], 859 ],
854 } 860 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698