OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'browser_chromeos', | 9 'target_name': 'browser_chromeos', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'variables': { | 11 'variables': { |
12 'conditions': [ | 12 'conditions': [ |
13 ['sysroot!=""', { | 13 ['sysroot!=""', { |
14 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar
get_arch)"', | 14 'pkg-config': '../build/linux/pkg-config-wrapper "<(sysroot)" "<(tar
get_arch)"', |
15 }, { | 15 }, { |
16 'pkg-config': 'pkg-config' | 16 'pkg-config': 'pkg-config' |
17 }], | 17 }], |
18 ], | 18 ], |
19 # Override to dynamically link the cras (ChromeOS audio) library. | 19 # Override to dynamically link the cras (ChromeOS audio) library. |
20 'use_cras%': 0, | 20 'use_cras%': 0, |
21 'enable_wexit_time_destructors': 1, | 21 'enable_wexit_time_destructors': 1, |
22 }, | 22 }, |
23 'dependencies': [ | 23 'dependencies': [ |
24 # TODO(tbarzic): Cleanup this list. | 24 # TODO(tbarzic): Cleanup this list. |
25 'app/policy/cloud_policy_codegen.gyp:policy', | 25 'app/policy/cloud_policy_codegen.gyp:policy', |
| 26 'attestation_proto', |
26 'browser_extensions', | 27 'browser_extensions', |
27 'browser/performance_monitor/performance_monitor.gyp:performance_monitor
', | 28 'browser/performance_monitor/performance_monitor.gyp:performance_monitor
', |
28 'cert_logger_proto', | 29 'cert_logger_proto', |
29 'chrome_resources.gyp:chrome_extra_resources', | 30 'chrome_resources.gyp:chrome_extra_resources', |
30 'chrome_resources.gyp:chrome_resources', | 31 'chrome_resources.gyp:chrome_resources', |
31 'chrome_resources.gyp:platform_locale_settings', | 32 'chrome_resources.gyp:platform_locale_settings', |
32 'chrome_resources.gyp:theme_resources', | 33 'chrome_resources.gyp:theme_resources', |
33 'common', | 34 'common', |
34 'common/extensions/api/api.gyp:api', | 35 'common/extensions/api/api.gyp:api', |
35 'common_net', | 36 'common_net', |
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 'sources': [ | 888 'sources': [ |
888 'browser/policy/proto/chromeos/chrome_device_policy.proto', | 889 'browser/policy/proto/chromeos/chrome_device_policy.proto', |
889 'browser/policy/proto/chromeos/install_attributes.proto', | 890 'browser/policy/proto/chromeos/install_attributes.proto', |
890 ], | 891 ], |
891 'variables': { | 892 'variables': { |
892 'proto_in_dir': 'browser/policy/proto/chromeos', | 893 'proto_in_dir': 'browser/policy/proto/chromeos', |
893 'proto_out_dir': 'chrome/browser/policy/proto/chromeos', | 894 'proto_out_dir': 'chrome/browser/policy/proto/chromeos', |
894 }, | 895 }, |
895 'includes': [ '../build/protoc.gypi' ] | 896 'includes': [ '../build/protoc.gypi' ] |
896 }, | 897 }, |
| 898 { |
| 899 # Protobuf compiler / generator for attestation protocol buffers. |
| 900 'target_name': 'attestation_proto', |
| 901 'type': 'static_library', |
| 902 'sources': [ |
| 903 'browser/chromeos/attestation/attestation_key_payload.proto', |
| 904 ], |
| 905 'variables': { |
| 906 'proto_in_dir': 'browser/chromeos/attestation', |
| 907 'proto_out_dir': 'chrome/browser/chromeos/attestation', |
| 908 }, |
| 909 'includes': [ '../build/protoc.gypi' ] |
| 910 }, |
897 ], | 911 ], |
898 } | 912 } |
OLD | NEW |