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

Side by Side Diff: chrome/chrome_common.gypi

Issue 14757022: Add a non-blocking "OneShotEvent" class (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dcronin's comments; ExtensionSystem::ready; and WeakPtr support Created 7 years, 7 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 | Annotate | Revision Log
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 46 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
47 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 47 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
48 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', 48 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
49 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 49 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
50 '<(DEPTH)/third_party/zlib/zlib.gyp:zip', 50 '<(DEPTH)/third_party/zlib/zlib.gyp:zip',
51 '<(DEPTH)/ui/ui.gyp:ui_resources', 51 '<(DEPTH)/ui/ui.gyp:ui_resources',
52 '<(DEPTH)/webkit/support/webkit_support.gyp:user_agent', 52 '<(DEPTH)/webkit/support/webkit_support.gyp:user_agent',
53 ], 53 ],
54 'sources': [ 54 'sources': [
55 '../apps/app_shim/app_shim_messages.h', 55 '../apps/app_shim/app_shim_messages.h',
56 '../extensions/common/async_event.cc',
57 '../extensions/common/async_event.h',
56 '../extensions/common/constants.cc', 58 '../extensions/common/constants.cc',
57 '../extensions/common/constants.h', 59 '../extensions/common/constants.h',
58 '../extensions/common/crx_file.cc', 60 '../extensions/common/crx_file.cc',
59 '../extensions/common/crx_file.h', 61 '../extensions/common/crx_file.h',
60 '../extensions/common/draggable_region.cc', 62 '../extensions/common/draggable_region.cc',
61 '../extensions/common/draggable_region.h', 63 '../extensions/common/draggable_region.h',
62 '../extensions/common/error_utils.cc', 64 '../extensions/common/error_utils.cc',
63 '../extensions/common/error_utils.h', 65 '../extensions/common/error_utils.h',
64 '../extensions/common/event_filter.cc', 66 '../extensions/common/event_filter.cc',
65 '../extensions/common/event_filter.h', 67 '../extensions/common/event_filter.h',
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 'common/metrics/proto/user_action_event.proto', 754 'common/metrics/proto/user_action_event.proto',
753 ], 755 ],
754 'variables': { 756 'variables': {
755 'proto_in_dir': 'common/metrics/proto', 757 'proto_in_dir': 'common/metrics/proto',
756 'proto_out_dir': 'chrome/common/metrics/proto', 758 'proto_out_dir': 'chrome/common/metrics/proto',
757 }, 759 },
758 'includes': [ '../build/protoc.gypi' ], 760 'includes': [ '../build/protoc.gypi' ],
759 }, 761 },
760 ], 762 ],
761 } 763 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698