OLD | NEW |
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': { |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 ['exclude', '^common/chrome_version_info_posix.cc'], | 425 ['exclude', '^common/chrome_version_info_posix.cc'], |
426 ['exclude', '^common/service_'], | 426 ['exclude', '^common/service_'], |
427 ], | 427 ], |
428 'dependencies!': [ | 428 'dependencies!': [ |
429 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', | 429 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy', |
430 ], | 430 ], |
431 }], | 431 }], |
432 ['OS=="win"', { | 432 ['OS=="win"', { |
433 'include_dirs': [ | 433 'include_dirs': [ |
434 '<(DEPTH)/third_party/wtl/include', | 434 '<(DEPTH)/third_party/wtl/include', |
435 ] | 435 ], |
| 436 'sources!': [ |
| 437 'common/crash_keys.cc', |
| 438 'common/crash_keys.h', |
| 439 ], |
436 }], | 440 }], |
437 ['toolkit_uses_gtk == 1', { | 441 ['toolkit_uses_gtk == 1', { |
438 'dependencies': [ | 442 'dependencies': [ |
439 '../build/linux/system.gyp:gtk', | 443 '../build/linux/system.gyp:gtk', |
440 ], | 444 ], |
441 'export_dependent_settings': [ | 445 'export_dependent_settings': [ |
442 '../third_party/sqlite/sqlite.gyp:sqlite', | 446 '../third_party/sqlite/sqlite.gyp:sqlite', |
443 ], | 447 ], |
444 'link_settings': { | 448 'link_settings': { |
445 'libraries': [ | 449 'libraries': [ |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 'common/metrics/proto/user_action_event.proto', | 697 'common/metrics/proto/user_action_event.proto', |
694 ], | 698 ], |
695 'variables': { | 699 'variables': { |
696 'proto_in_dir': 'common/metrics/proto', | 700 'proto_in_dir': 'common/metrics/proto', |
697 'proto_out_dir': 'chrome/common/metrics/proto', | 701 'proto_out_dir': 'chrome/common/metrics/proto', |
698 }, | 702 }, |
699 'includes': [ '../build/protoc.gypi' ], | 703 'includes': [ '../build/protoc.gypi' ], |
700 }, | 704 }, |
701 ], | 705 ], |
702 } | 706 } |
OLD | NEW |