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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 901793002: Add support for providing an external file for extracting content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved injection to constructor Created 5 years, 9 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 { 5 {
6 'variables': { 6 'variables': {
7 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 2985 matching lines...) Expand 10 before | Expand all | Expand 10 after
2996 ], 2996 ],
2997 'conditions': [ 2997 'conditions': [
2998 ['OS != "ios"', { 2998 ['OS != "ios"', {
2999 'dependencies': [ 2999 'dependencies': [
3000 'apps', 3000 'apps',
3001 'debugger', 3001 'debugger',
3002 'installer_util', 3002 'installer_util',
3003 '../third_party/re2/re2.gyp:re2', 3003 '../third_party/re2/re2.gyp:re2',
3004 '../cc/cc.gyp:cc', 3004 '../cc/cc.gyp:cc',
3005 '../components/components.gyp:autofill_content_browser', 3005 '../components/components.gyp:autofill_content_browser',
3006 '../components/components_resources.gyp:components_resources',
3006 '../components/components.gyp:data_reduction_proxy_content_browser', 3007 '../components/components.gyp:data_reduction_proxy_content_browser',
3007 '../components/components.gyp:dom_distiller_content', 3008 '../components/components.gyp:dom_distiller_content',
3008 '../components/components.gyp:history_content_browser', 3009 '../components/components.gyp:history_content_browser',
3009 '../components/components.gyp:keyed_service_content', 3010 '../components/components.gyp:keyed_service_content',
3010 '../components/components.gyp:navigation_interception', 3011 '../components/components.gyp:navigation_interception',
3011 '../components/components.gyp:packed_ct_ev_whitelist', 3012 '../components/components.gyp:packed_ct_ev_whitelist',
3012 '../components/components.gyp:password_manager_content_browser', 3013 '../components/components.gyp:password_manager_content_browser',
3013 '../components/components.gyp:power', 3014 '../components/components.gyp:power',
3014 '../components/components.gyp:precache_content', 3015 '../components/components.gyp:precache_content',
3015 '../components/components.gyp:sessions_content', 3016 '../components/components.gyp:sessions_content',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
3375 '../device/core/core.gyp:device_core', 3376 '../device/core/core.gyp:device_core',
3376 '../device/usb/usb.gyp:device_usb', 3377 '../device/usb/usb.gyp:device_usb',
3377 ] 3378 ]
3378 }], 3379 }],
3379 ['OS=="android"', { 3380 ['OS=="android"', {
3380 'dependencies': [ 3381 'dependencies': [
3381 '../components/components.gyp:cdm_browser', 3382 '../components/components.gyp:cdm_browser',
3382 '../components/components.gyp:data_reduction_proxy_content', 3383 '../components/components.gyp:data_reduction_proxy_content',
3383 '../components/components.gyp:enhanced_bookmarks', 3384 '../components/components.gyp:enhanced_bookmarks',
3384 '../components/components.gyp:web_contents_delegate_android', 3385 '../components/components.gyp:web_contents_delegate_android',
3385 '../components/components_resources.gyp:components_resources',
3386 '../third_party/android_opengl/etc1/etc1.gyp:etc1', 3386 '../third_party/android_opengl/etc1/etc1.gyp:etc1',
3387 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ util', 3387 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ util',
3388 'chrome_browser_jni_headers', 3388 'chrome_browser_jni_headers',
3389 ], 3389 ],
3390 'dependencies!': [ 3390 'dependencies!': [
3391 '../components/components.gyp:feedback_component', 3391 '../components/components.gyp:feedback_component',
3392 '../components/components.gyp:storage_monitor', 3392 '../components/components.gyp:storage_monitor',
3393 '../components/components.gyp:web_modal', 3393 '../components/components.gyp:web_modal',
3394 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' , 3394 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput' ,
3395 ], 3395 ],
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
3709 'variables': { 3709 'variables': {
3710 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3710 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3711 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3711 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3712 }, 3712 },
3713 'includes': [ '../build/protoc.gypi' ] 3713 'includes': [ '../build/protoc.gypi' ]
3714 }, 3714 },
3715 ], 3715 ],
3716 },], 3716 },],
3717 ], 3717 ],
3718 } 3718 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698