OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'target_defaults': { | 6 'target_defaults': { |
7 'defines': [ | 7 'defines': [ |
8 ], | 8 ], |
9 'include_dirs': [ | 9 'include_dirs': [ |
10 '..', # Root of Chrome checkout | 10 '..', # Root of Chrome checkout |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 'target_name': 'chromoting_client_test_webserver', | 84 'target_name': 'chromoting_client_test_webserver', |
85 'type': 'executable', | 85 'type': 'executable', |
86 'sources': [ | 86 'sources': [ |
87 'tools/client_webserver/main.c', | 87 'tools/client_webserver/main.c', |
88 ], | 88 ], |
89 }, # end of target 'chromoting_client_test_webserver' | 89 }, # end of target 'chromoting_client_test_webserver' |
90 | 90 |
91 ], # end of Client targets | 91 ], # end of Client targets |
92 }], # end of OS conditions for Client targets | 92 }], # end of OS conditions for Client targets |
93 | 93 |
94 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="mac"', { | 94 # TODO(hclam): Enable this target for mac. |
| 95 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
95 'targets': [ | 96 'targets': [ |
96 { | 97 { |
97 'target_name': 'chromoting_x11_client', | 98 'target_name': 'chromoting_x11_client', |
98 'type': 'executable', | 99 'type': 'executable', |
99 'dependencies': [ | 100 'dependencies': [ |
100 'chromoting_base', | 101 'chromoting_base', |
101 'chromoting_client', | 102 'chromoting_client', |
102 'chromoting_jingle_glue', | 103 'chromoting_jingle_glue', |
103 ], | 104 ], |
104 'link_settings': { | 105 'link_settings': { |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 ], # end of 'conditions' | 380 ], # end of 'conditions' |
380 }, # end of target 'chromoting_unittests' | 381 }, # end of target 'chromoting_unittests' |
381 ], # end of targets | 382 ], # end of targets |
382 } | 383 } |
383 | 384 |
384 # Local Variables: | 385 # Local Variables: |
385 # tab-width:2 | 386 # tab-width:2 |
386 # indent-tabs-mode:nil | 387 # indent-tabs-mode:nil |
387 # End: | 388 # End: |
388 # vim: set expandtab tabstop=2 shiftwidth=2: | 389 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |