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

Side by Side Diff: chrome/chrome.gyp

Issue 461633002: Refactor language detection logic to allow non-static CLD data sources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make some of the harness factory methods private Created 6 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 # 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 21 matching lines...) Expand all
32 '../ppapi/ppapi_internal.gyp:ppapi_host', 32 '../ppapi/ppapi_internal.gyp:ppapi_host',
33 ], 33 ],
34 'chromium_child_dependencies': [ 34 'chromium_child_dependencies': [
35 'plugin', 35 'plugin',
36 'renderer', 36 'renderer',
37 'utility', 37 'utility',
38 '../content/content.gyp:content_gpu', 38 '../content/content.gyp:content_gpu',
39 '../content/content.gyp:content_ppapi_plugin', 39 '../content/content.gyp:content_ppapi_plugin',
40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte nd_resources', 40 '../third_party/WebKit/public/blink_devtools.gyp:blink_devtools_fronte nd_resources',
41 ], 41 ],
42 'conditions': [
43 [ 'cld_version==0 or cld_version==2', {
44 'chromium_child_dependencies': [
45 # Use whatever CLD2 data access mode that the application
46 # embedder is using.
47 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld2_platform_impl', ],
48 }],
49 ],
42 }], 50 }],
43 ['enable_basic_printing==1 or enable_print_preview==1', { 51 ['enable_basic_printing==1 or enable_print_preview==1', {
44 'chromium_browser_dependencies': [ 52 'chromium_browser_dependencies': [
45 '../printing/printing.gyp:printing', 53 '../printing/printing.gyp:printing',
46 ], 54 ],
47 }], 55 }],
48 ['enable_print_preview==1', { 56 ['enable_print_preview==1', {
49 'chromium_browser_dependencies': [ 57 'chromium_browser_dependencies': [
50 'service', 58 'service',
51 ], 59 ],
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 'service/service_utility_process_host.cc', 768 'service/service_utility_process_host.cc',
761 'service/service_utility_process_host.h', 769 'service/service_utility_process_host.h',
762 ], 770 ],
763 }], 771 }],
764 ], 772 ],
765 }, 773 },
766 ], 774 ],
767 }], 775 }],
768 ], # 'conditions' 776 ], # 'conditions'
769 } 777 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/translate_internals/translate_internals_ui.cc ('k') | chrome/chrome_dll.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698