| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 6 'includes': [ |
| 7 'remoting_version.gypi', | 7 'remoting_version.gypi', |
| 8 'remoting_locales.gypi', | 8 'remoting_locales.gypi', |
| 9 'remoting_options.gypi', |
| 9 'remoting_webapp_files.gypi', | 10 'remoting_webapp_files.gypi', |
| 10 'app_remoting_webapp_files.gypi', | 11 'app_remoting_webapp_files.gypi', |
| 11 ], | 12 ], |
| 12 | 13 |
| 13 'variables': { | 14 'variables': { |
| 14 'chromium_code': 1, | |
| 15 | |
| 16 'run_jscompile%': 0, | |
| 17 | |
| 18 # The ar_service_environment variable is used to define the target | 15 # The ar_service_environment variable is used to define the target |
| 19 # environment for the app being built. | 16 # environment for the app being built. |
| 20 # The allowed values are dev, test, staging, and prod. | 17 # The allowed values are dev, test, staging, and prod. |
| 21 'conditions': [ | 18 'conditions': [ |
| 22 ['buildtype == "Dev"', { | 19 ['buildtype == "Dev"', { |
| 23 'ar_service_environment%': 'dev', | 20 'ar_service_environment%': 'dev', |
| 24 }, { # buildtype != 'Dev' | 21 }, { # buildtype != 'Dev' |
| 25 # Non-dev build must have this set to 'prod'. | 22 # Non-dev build must have this set to 'prod'. |
| 26 'ar_service_environment': 'prod', | 23 'ar_service_environment': 'prod', |
| 27 }], | 24 }], |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 # rather than using the extension id. | 196 # rather than using the extension id. |
| 200 # This is only done for Dev apps because the app-id for Release apps | 197 # This is only done for Dev apps because the app-id for Release apps |
| 201 # *must* match the extension id. | 198 # *must* match the extension id. |
| 202 'variables': { | 199 'variables': { |
| 203 'remoting_app_id': ['--appid', '>(_app_id)'], | 200 'remoting_app_id': ['--appid', '>(_app_id)'], |
| 204 }, | 201 }, |
| 205 }], | 202 }], |
| 206 ], # conditions | 203 ], # conditions |
| 207 }, # target_defaults | 204 }, # target_defaults |
| 208 } | 205 } |
| OLD | NEW |