OLD | NEW |
---|---|
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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
532 'sources!': [ | 532 'sources!': [ |
533 'common/chrome_version_info_linux.cc', | 533 'common/chrome_version_info_linux.cc', |
534 ], | 534 ], |
535 }], | 535 }], |
536 ['OS=="mac"', { | 536 ['OS=="mac"', { |
537 'dependencies': [ | 537 'dependencies': [ |
538 '../third_party/mach_override/mach_override.gyp:mach_override', | 538 '../third_party/mach_override/mach_override.gyp:mach_override', |
539 ], | 539 ], |
540 'include_dirs': [ | 540 'include_dirs': [ |
541 '<(DEPTH)/breakpad/src', | 541 '<(DEPTH)/breakpad/src', |
542 '../third_party/GTM', | 542 '../third_party/google_toolbox_for_mac/src', |
Mark Mentovai
2013/12/13 23:03:20
Same here. This target should depend on the new GT
tfarina
2013/12/16 02:42:03
Done.
| |
543 ], | 543 ], |
544 'sources!': [ | 544 'sources!': [ |
545 'common/child_process_logging_posix.cc', | 545 'common/child_process_logging_posix.cc', |
546 'common/chrome_version_info_posix.cc', | 546 'common/chrome_version_info_posix.cc', |
547 ], | 547 ], |
548 }], | 548 }], |
549 ['remoting==1', { | 549 ['remoting==1', { |
550 'dependencies': [ | 550 'dependencies': [ |
551 '../remoting/remoting.gyp:remoting_client_plugin', | 551 '../remoting/remoting.gyp:remoting_client_plugin', |
552 ], | 552 ], |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
760 'common/metrics/proto/user_action_event.proto', | 760 'common/metrics/proto/user_action_event.proto', |
761 ], | 761 ], |
762 'variables': { | 762 'variables': { |
763 'proto_in_dir': 'common/metrics/proto', | 763 'proto_in_dir': 'common/metrics/proto', |
764 'proto_out_dir': 'chrome/common/metrics/proto', | 764 'proto_out_dir': 'chrome/common/metrics/proto', |
765 }, | 765 }, |
766 'includes': [ '../build/protoc.gypi' ], | 766 'includes': [ '../build/protoc.gypi' ], |
767 }, | 767 }, |
768 ], | 768 ], |
769 } | 769 } |
OLD | NEW |