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

Side by Side Diff: chrome/chrome_common.gypi

Issue 25531002: Move language detection to a component (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix compilation Created 7 years, 2 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 'common/spellcheck_common.h', 399 'common/spellcheck_common.h',
400 'common/spellcheck_marker.h', 400 'common/spellcheck_marker.h',
401 'common/spellcheck_messages.h', 401 'common/spellcheck_messages.h',
402 'common/spellcheck_result.h', 402 'common/spellcheck_result.h',
403 'common/switch_utils.cc', 403 'common/switch_utils.cc',
404 'common/switch_utils.h', 404 'common/switch_utils.h',
405 'common/thumbnail_score.cc', 405 'common/thumbnail_score.cc',
406 'common/thumbnail_score.h', 406 'common/thumbnail_score.h',
407 'common/translate/language_detection_details.cc', 407 'common/translate/language_detection_details.cc',
408 'common/translate/language_detection_details.h', 408 'common/translate/language_detection_details.h',
409 'common/translate/language_detection_util.cc',
410 'common/translate/language_detection_util.h',
411 'common/translate/translate_common_metrics.cc',
412 'common/translate/translate_common_metrics.h',
413 'common/translate/translate_errors.h', 409 'common/translate/translate_errors.h',
414 'common/translate/translate_util.cc',
415 'common/translate/translate_util.h',
416 'common/tts_messages.h', 410 'common/tts_messages.h',
417 'common/tts_utterance_request.cc', 411 'common/tts_utterance_request.cc',
418 'common/tts_utterance_request.h', 412 'common/tts_utterance_request.h',
419 'common/url_constants.cc', 413 'common/url_constants.cc',
420 'common/url_constants.h', 414 'common/url_constants.h',
421 'common/validation_message_messages.h', 415 'common/validation_message_messages.h',
422 'common/web_application_info.cc', 416 'common/web_application_info.cc',
423 'common/web_application_info.h', 417 'common/web_application_info.h',
424 'common/worker_thread_ticker.cc', 418 'common/worker_thread_ticker.cc',
425 'common/worker_thread_ticker.h', 419 'common/worker_thread_ticker.h',
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 'sources!': [ 604 'sources!': [
611 'common/media/webrtc_logging_messages.h', 605 'common/media/webrtc_logging_messages.h',
612 ] 606 ]
613 }], 607 }],
614 ['enable_printing==0', { 608 ['enable_printing==0', {
615 'sources!': [ 609 'sources!': [
616 'common/print_messages.cc', 610 'common/print_messages.cc',
617 'common/print_messages.h', 611 'common/print_messages.h',
618 ] 612 ]
619 }], 613 }],
620 ['cld_version==0 or cld_version==1', {
621 'dependencies': [
622 '<(DEPTH)/third_party/cld/cld.gyp:cld',
623 ],
624 }],
625 ['cld_version==0 or cld_version==2', {
626 'dependencies': [
627 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2',
628 ],
629 }],
630 ], 614 ],
631 'target_conditions': [ 615 'target_conditions': [
632 ['OS == "ios"', { 616 ['OS == "ios"', {
633 'sources/': [ 617 'sources/': [
634 # Pull in specific Mac files for iOS (which have been filtered out 618 # Pull in specific Mac files for iOS (which have been filtered out
635 # by file name rules). 619 # by file name rules).
636 ['include', '^common/chrome_version_info_mac\\.mm$'], 620 ['include', '^common/chrome_version_info_mac\\.mm$'],
637 ['include', '^common/mac/nscoder_util\\.'], 621 ['include', '^common/mac/nscoder_util\\.'],
638 ], 622 ],
639 }], 623 }],
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 'common/metrics/proto/user_action_event.proto', 795 'common/metrics/proto/user_action_event.proto',
812 ], 796 ],
813 'variables': { 797 'variables': {
814 'proto_in_dir': 'common/metrics/proto', 798 'proto_in_dir': 'common/metrics/proto',
815 'proto_out_dir': 'chrome/common/metrics/proto', 799 'proto_out_dir': 'chrome/common/metrics/proto',
816 }, 800 },
817 'includes': [ '../build/protoc.gypi' ], 801 'includes': [ '../build/protoc.gypi' ],
818 }, 802 },
819 ], 803 ],
820 } 804 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698