OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 |
| 13 # ipc_message_macros.h. http://crbug.com/101600 |
| 14 #'enable_wexit_time_destructors': 1, |
12 }, | 15 }, |
13 'include_dirs': [ | 16 'include_dirs': [ |
14 '..', | 17 '..', |
15 ], | 18 ], |
16 'direct_dependent_settings': { | 19 'direct_dependent_settings': { |
17 'include_dirs': [ | 20 'include_dirs': [ |
18 '..', | 21 '..', |
19 ], | 22 ], |
20 }, | 23 }, |
21 'dependencies': [ | 24 'dependencies': [ |
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 'common/safe_browsing/csd.proto' | 428 'common/safe_browsing/csd.proto' |
426 ], | 429 ], |
427 'variables': { | 430 'variables': { |
428 'proto_in_dir': 'common/safe_browsing', | 431 'proto_in_dir': 'common/safe_browsing', |
429 'proto_out_dir': 'chrome/common/safe_browsing', | 432 'proto_out_dir': 'chrome/common/safe_browsing', |
430 }, | 433 }, |
431 'includes': [ '../build/protoc.gypi' ], | 434 'includes': [ '../build/protoc.gypi' ], |
432 }, | 435 }, |
433 ], | 436 ], |
434 } | 437 } |
OLD | NEW |