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

Side by Side Diff: chrome/chrome_common.gypi

Issue 11347012: Split IPC logging between content and chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 8 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 { 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': {
11 'chrome_common_target': 1, 11 'chrome_common_target': 1,
12 # TODO(thakis): Turn this on. Blocked on g_log_function_mapping in 12 'enable_wexit_time_destructors': 1,
13 # ipc_message_macros.h. http://crbug.com/101600
14 #'enable_wexit_time_destructors': 1,
15 }, 13 },
16 'include_dirs': [ 14 'include_dirs': [
17 '..', 15 '..',
18 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_content_client.cc. 16 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_content_client.cc.
19 ], 17 ],
20 'direct_dependent_settings': { 18 'direct_dependent_settings': {
21 'include_dirs': [ 19 'include_dirs': [
22 '..', 20 '..',
23 ], 21 ],
24 }, 22 },
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 'common/metrics/proto/user_action_event.proto', 586 'common/metrics/proto/user_action_event.proto',
589 ], 587 ],
590 'variables': { 588 'variables': {
591 'proto_in_dir': 'common/metrics/proto', 589 'proto_in_dir': 'common/metrics/proto',
592 'proto_out_dir': 'chrome/common/metrics/proto', 590 'proto_out_dir': 'chrome/common/metrics/proto',
593 }, 591 },
594 'includes': [ '../build/protoc.gypi' ], 592 'includes': [ '../build/protoc.gypi' ],
595 }, 593 },
596 ], 594 ],
597 } 595 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698