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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
10 'run_jscompile%': 0, | 10 'run_jscompile%': 0, |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 'remoting_version.gypi', | 101 'remoting_version.gypi', |
102 'remoting_webapp_files.gypi', | 102 'remoting_webapp_files.gypi', |
103 ], | 103 ], |
104 | 104 |
105 'target_defaults': { | 105 'target_defaults': { |
106 'defines': [ | 106 'defines': [ |
107 'BINARY_CORE=1', | 107 'BINARY_CORE=1', |
108 'BINARY_DESKTOP=2', | 108 'BINARY_DESKTOP=2', |
109 'BINARY_HOST_ME2ME=3', | 109 'BINARY_HOST_ME2ME=3', |
110 'BINARY_HOST_PLUGIN=4', | 110 'BINARY_HOST_PLUGIN=4', |
| 111 'BINARY_NATIVE_MESSAGING_HOST=5', |
| 112 'BINARY_REMOTE_ASSISTANCE_HOST=6', |
111 ], | 113 ], |
112 'include_dirs': [ | 114 'include_dirs': [ |
113 '..', # Root of Chrome checkout | 115 '..', # Root of Chrome checkout |
114 ], | 116 ], |
115 'variables': { | 117 'variables': { |
116 'win_debug_RuntimeChecks': '0', | 118 'win_debug_RuntimeChecks': '0', |
117 }, | 119 }, |
118 'conditions': [ | 120 'conditions': [ |
119 ['OS=="mac" and mac_breakpad==1', { | 121 ['OS=="mac" and mac_breakpad==1', { |
120 'defines': [ | 122 'defines': [ |
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 'protocol/v2_authenticator.h', | 628 'protocol/v2_authenticator.h', |
627 'protocol/video_reader.cc', | 629 'protocol/video_reader.cc', |
628 'protocol/video_reader.h', | 630 'protocol/video_reader.h', |
629 'protocol/video_stub.h', | 631 'protocol/video_stub.h', |
630 'protocol/video_writer.cc', | 632 'protocol/video_writer.cc', |
631 'protocol/video_writer.h', | 633 'protocol/video_writer.h', |
632 ], | 634 ], |
633 }, # end of target 'remoting_protocol' | 635 }, # end of target 'remoting_protocol' |
634 ], # end of targets | 636 ], # end of targets |
635 } | 637 } |
OLD | NEW |