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

Side by Side Diff: chrome/chrome_common.gypi

Issue 23007021: Report Javascript Runtime Errors to the Error Console (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dc_ec_feldman
Patch Set: Comment Condensed Created 7 years, 4 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) 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar', 49 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
50 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 50 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
51 '<(DEPTH)/third_party/zlib/google/zip.gyp:zip', 51 '<(DEPTH)/third_party/zlib/google/zip.gyp:zip',
52 '<(DEPTH)/ui/ui.gyp:ui_resources', 52 '<(DEPTH)/ui/ui.gyp:ui_resources',
53 '<(DEPTH)/url/url.gyp:url_lib', 53 '<(DEPTH)/url/url.gyp:url_lib',
54 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', 54 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
55 ], 55 ],
56 'sources': [ 56 'sources': [
57 '../apps/app_shim/app_shim_launch.h', 57 '../apps/app_shim/app_shim_launch.h',
58 '../apps/app_shim/app_shim_messages.h', 58 '../apps/app_shim/app_shim_messages.h',
59 '../extensions/common/constants.cc',
60 '../extensions/common/constants.h',
59 '../extensions/common/crx_file.cc', 61 '../extensions/common/crx_file.cc',
60 '../extensions/common/crx_file.h', 62 '../extensions/common/crx_file.h',
61 '../extensions/common/draggable_region.cc', 63 '../extensions/common/draggable_region.cc',
62 '../extensions/common/draggable_region.h', 64 '../extensions/common/draggable_region.h',
63 '../extensions/common/error_utils.cc', 65 '../extensions/common/error_utils.cc',
64 '../extensions/common/error_utils.h', 66 '../extensions/common/error_utils.h',
65 '../extensions/common/event_filter.cc', 67 '../extensions/common/event_filter.cc',
66 '../extensions/common/event_filter.h', 68 '../extensions/common/event_filter.h',
67 '../extensions/common/event_filtering_info.cc', 69 '../extensions/common/event_filtering_info.cc',
68 '../extensions/common/event_filtering_info.h', 70 '../extensions/common/event_filtering_info.h',
69 '../extensions/common/event_matcher.cc', 71 '../extensions/common/event_matcher.cc',
70 '../extensions/common/event_matcher.h', 72 '../extensions/common/event_matcher.h',
71 '../extensions/common/extension_paths.cc', 73 '../extensions/common/extension_paths.cc',
72 '../extensions/common/extension_paths.h', 74 '../extensions/common/extension_paths.h',
73 '../extensions/common/extension_resource.cc', 75 '../extensions/common/extension_resource.cc',
74 '../extensions/common/extension_resource.h', 76 '../extensions/common/extension_resource.h',
77 '../extensions/common/extension_urls.cc',
78 '../extensions/common/extension_urls.h',
75 '../extensions/common/extensions_client.cc', 79 '../extensions/common/extensions_client.cc',
76 '../extensions/common/extensions_client.h', 80 '../extensions/common/extensions_client.h',
77 '../extensions/common/features/feature.cc', 81 '../extensions/common/features/feature.cc',
78 '../extensions/common/features/feature.h', 82 '../extensions/common/features/feature.h',
79 '../extensions/common/features/feature_provider.cc', 83 '../extensions/common/features/feature_provider.cc',
80 '../extensions/common/features/feature_provider.h', 84 '../extensions/common/features/feature_provider.h',
81 '../extensions/common/id_util.cc', 85 '../extensions/common/id_util.cc',
82 '../extensions/common/id_util.h', 86 '../extensions/common/id_util.h',
83 '../extensions/common/install_warning.cc', 87 '../extensions/common/install_warning.cc',
84 '../extensions/common/install_warning.h', 88 '../extensions/common/install_warning.h',
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 'common/metrics/proto/user_action_event.proto', 849 'common/metrics/proto/user_action_event.proto',
846 ], 850 ],
847 'variables': { 851 'variables': {
848 'proto_in_dir': 'common/metrics/proto', 852 'proto_in_dir': 'common/metrics/proto',
849 'proto_out_dir': 'chrome/common/metrics/proto', 853 'proto_out_dir': 'chrome/common/metrics/proto',
850 }, 854 },
851 'includes': [ '../build/protoc.gypi' ], 855 'includes': [ '../build/protoc.gypi' ],
852 }, 856 },
853 ], 857 ],
854 } 858 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698