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

Side by Side Diff: chrome/chrome.gyp

Issue 194079: renderer process notifications support (Closed)
Patch Set: last change for code review Created 11 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 # Define the common dependencies that contain all the actual 9 # Define the common dependencies that contain all the actual
10 # Chromium functionality. This list gets pulled in below by 10 # Chromium functionality. This list gets pulled in below by
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 '../third_party/zlib/zlib.gyp:zlib', 478 '../third_party/zlib/zlib.gyp:zlib',
479 '../third_party/npapi/npapi.gyp:npapi', 479 '../third_party/npapi/npapi.gyp:npapi',
480 '../webkit/webkit.gyp:appcache', 480 '../webkit/webkit.gyp:appcache',
481 '../webkit/webkit.gyp:glue', 481 '../webkit/webkit.gyp:glue',
482 ], 482 ],
483 'include_dirs': [ 483 'include_dirs': [
484 '..', 484 '..',
485 ], 485 ],
486 'sources': [ 486 'sources': [
487 # All .cc, .h, and .mm files under chrome/common except for tests. 487 # All .cc, .h, and .mm files under chrome/common except for tests.
488 'common/desktop_notifications/active_notification_tracker.h',
489 'common/desktop_notifications/active_notification_tracker.cc',
488 'common/extensions/extension.cc', 490 'common/extensions/extension.cc',
489 'common/extensions/extension.h', 491 'common/extensions/extension.h',
490 'common/extensions/extension_constants.cc', 492 'common/extensions/extension_constants.cc',
491 'common/extensions/extension_constants.h', 493 'common/extensions/extension_constants.h',
492 'common/extensions/extension_error_reporter.cc', 494 'common/extensions/extension_error_reporter.cc',
493 'common/extensions/extension_error_reporter.h', 495 'common/extensions/extension_error_reporter.h',
494 'common/extensions/extension_error_utils.cc', 496 'common/extensions/extension_error_utils.cc',
495 'common/extensions/extension_error_utils.h', 497 'common/extensions/extension_error_utils.h',
496 'common/extensions/extension_action.cc', 498 'common/extensions/extension_action.cc',
497 'common/extensions/extension_action.h', 499 'common/extensions/extension_action.h',
(...skipping 2557 matching lines...) Expand 10 before | Expand all | Expand 10 after
3055 'renderer/dom_ui_bindings.cc', 3057 'renderer/dom_ui_bindings.cc',
3056 'renderer/dom_ui_bindings.h', 3058 'renderer/dom_ui_bindings.h',
3057 'renderer/extension_groups.h', 3059 'renderer/extension_groups.h',
3058 'renderer/external_host_bindings.cc', 3060 'renderer/external_host_bindings.cc',
3059 'renderer/external_host_bindings.h', 3061 'renderer/external_host_bindings.h',
3060 'renderer/external_extension.cc', 3062 'renderer/external_extension.cc',
3061 'renderer/external_extension.h', 3063 'renderer/external_extension.h',
3062 'renderer/localized_error.cc', 3064 'renderer/localized_error.cc',
3063 'renderer/localized_error.h', 3065 'renderer/localized_error.h',
3064 'renderer/navigation_state.h', 3066 'renderer/navigation_state.h',
3067 'renderer/notification_provider.cc',
3068 'renderer/notification_provider.h',
3065 'renderer/plugin_channel_host.cc', 3069 'renderer/plugin_channel_host.cc',
3066 'renderer/plugin_channel_host.h', 3070 'renderer/plugin_channel_host.h',
3067 'renderer/print_web_view_helper.cc', 3071 'renderer/print_web_view_helper.cc',
3068 'renderer/print_web_view_helper.h', 3072 'renderer/print_web_view_helper.h',
3069 'renderer/print_web_view_helper_linux.cc', 3073 'renderer/print_web_view_helper_linux.cc',
3070 'renderer/print_web_view_helper_mac.cc', 3074 'renderer/print_web_view_helper_mac.cc',
3071 'renderer/print_web_view_helper_win.cc', 3075 'renderer/print_web_view_helper_win.cc',
3072 'renderer/render_process.cc', 3076 'renderer/render_process.cc',
3073 'renderer/render_process.h', 3077 'renderer/render_process.h',
3074 'renderer/render_thread.cc', 3078 'renderer/render_thread.cc',
(...skipping 3715 matching lines...) Expand 10 before | Expand all | Expand 10 after
6790 'defines': [ 6794 'defines': [
6791 'POSIX', 6795 'POSIX',
6792 ], 6796 ],
6793 }], 6797 }],
6794 ], 6798 ],
6795 }, 6799 },
6796 ], # targets when chrome_personalization==1 6800 ], # targets when chrome_personalization==1
6797 }], 6801 }],
6798 ], # 'conditions' 6802 ], # 'conditions'
6799 } 6803 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698