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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 ], | 524 ], |
525 'link_settings': { | 525 'link_settings': { |
526 'libraries': [ | 526 'libraries': [ |
527 '-lX11', | 527 '-lX11', |
528 '-lXrender', | 528 '-lXrender', |
529 '-lXss', | 529 '-lXss', |
530 '-lXext', | 530 '-lXext', |
531 ], | 531 ], |
532 }, | 532 }, |
533 }], | 533 }], |
534 ['OS=="linux" and selinux==1', { | |
535 'dependencies': [ | |
536 '../build/linux/system.gyp:selinux', | |
537 ], | |
538 }], | |
539 ['chromeos==1', { | 534 ['chromeos==1', { |
540 'sources!': [ | 535 'sources!': [ |
541 'common/chrome_version_info_linux.cc', | 536 'common/chrome_version_info_linux.cc', |
542 ], | 537 ], |
543 }], | 538 }], |
544 ['OS=="mac"', { | 539 ['OS=="mac"', { |
545 'dependencies': [ | 540 'dependencies': [ |
546 '../third_party/mach_override/mach_override.gyp:mach_override', | 541 '../third_party/mach_override/mach_override.gyp:mach_override', |
547 ], | 542 ], |
548 'include_dirs': [ | 543 'include_dirs': [ |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 'common/metrics/proto/user_action_event.proto', | 746 'common/metrics/proto/user_action_event.proto', |
752 ], | 747 ], |
753 'variables': { | 748 'variables': { |
754 'proto_in_dir': 'common/metrics/proto', | 749 'proto_in_dir': 'common/metrics/proto', |
755 'proto_out_dir': 'chrome/common/metrics/proto', | 750 'proto_out_dir': 'chrome/common/metrics/proto', |
756 }, | 751 }, |
757 'includes': [ '../build/protoc.gypi' ], | 752 'includes': [ '../build/protoc.gypi' ], |
758 }, | 753 }, |
759 ], | 754 ], |
760 } | 755 } |
OLD | NEW |