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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 11361051: Remove dependency on language detection library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Using enable_language_detection feature flag Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'browser', 9 'target_name': 'browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 '../skia/skia.gyp:skia', 44 '../skia/skia.gyp:skia',
45 '../sync/protocol/sync_proto.gyp:sync_proto', 45 '../sync/protocol/sync_proto.gyp:sync_proto',
46 # TODO(akalin): Depend only on syncapi_service from sync. 46 # TODO(akalin): Depend only on syncapi_service from sync.
47 '../sync/sync.gyp:syncapi_core', 47 '../sync/sync.gyp:syncapi_core',
48 '../sync/sync.gyp:syncapi_service', 48 '../sync/sync.gyp:syncapi_service',
49 '../sync/sync.gyp:sync_notifier', 49 '../sync/sync.gyp:sync_notifier',
50 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', 50 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h',
51 '../third_party/bzip2/bzip2.gyp:bzip2', 51 '../third_party/bzip2/bzip2.gyp:bzip2',
52 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 52 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
53 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', 53 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp',
54 '../third_party/cld/cld.gyp:cld',
55 '../third_party/expat/expat.gyp:expat', 54 '../third_party/expat/expat.gyp:expat',
56 '../third_party/hunspell/hunspell.gyp:hunspell', 55 '../third_party/hunspell/hunspell.gyp:hunspell',
57 '../third_party/icu/icu.gyp:icui18n', 56 '../third_party/icu/icu.gyp:icui18n',
58 '../third_party/icu/icu.gyp:icuuc', 57 '../third_party/icu/icu.gyp:icuuc',
59 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 58 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
60 '../third_party/libjingle/libjingle.gyp:libjingle', 59 '../third_party/libjingle/libjingle.gyp:libjingle',
61 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber', 60 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber',
62 '../third_party/libusb/libusb.gyp:libusb', 61 '../third_party/libusb/libusb.gyp:libusb',
63 '../third_party/libxml/libxml.gyp:libxml', 62 '../third_party/libxml/libxml.gyp:libxml',
64 '../third_party/npapi/npapi.gyp:npapi', 63 '../third_party/npapi/npapi.gyp:npapi',
(...skipping 2464 matching lines...) Expand 10 before | Expand all | Expand 10 after
2529 ], 2528 ],
2530 'sources/': [ 2529 'sources/': [
2531 ['exclude', '^browser/themes/'], 2530 ['exclude', '^browser/themes/'],
2532 ], 2531 ],
2533 }], 2532 }],
2534 ['enable_automation!=1', { 2533 ['enable_automation!=1', {
2535 'sources/': [ 2534 'sources/': [
2536 ['exclude', '^browser/automation/'], 2535 ['exclude', '^browser/automation/'],
2537 ], 2536 ],
2538 }], 2537 }],
2538 ['enable_language_detection==0', {
2539 'sources!': [
2540 'browser/language_usage_metrics.cc',
2541 'browser/language_usage_metrics.h',
2542 ],
2543 }, { # enable_language_detection==1
2544 'dependencies': [
2545 '../third_party/cld/cld.gyp:cld',
2546 ],
2547 }],
2539 ['enable_printing!=1', { 2548 ['enable_printing!=1', {
2540 'sources/': [ 2549 'sources/': [
2541 ['exclude', '^browser/ui/webui/print_preview/'], 2550 ['exclude', '^browser/ui/webui/print_preview/'],
2542 ], 2551 ],
2543 }], 2552 }],
2544 ['enable_captive_portal_detection!=1', { 2553 ['enable_captive_portal_detection!=1', {
2545 'sources/': [ 2554 'sources/': [
2546 ['exclude', '^browser/captive_portal/'], 2555 ['exclude', '^browser/captive_portal/'],
2547 ], 2556 ],
2548 }], 2557 }],
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2974 'proto_in_dir': '../third_party/cros_system_api/dbus', 2983 'proto_in_dir': '../third_party/cros_system_api/dbus',
2975 'proto_out_dir': 'chrome/browser/media_transfer_protocol', 2984 'proto_out_dir': 'chrome/browser/media_transfer_protocol',
2976 }, 2985 },
2977 'includes': ['../build/protoc.gypi'], 2986 'includes': ['../build/protoc.gypi'],
2978 }, 2987 },
2979 ], 2988 ],
2980 }, 2989 },
2981 ], 2990 ],
2982 ], 2991 ],
2983 } 2992 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698