OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # All .cc, .h, .m, and .mm files under browser except for: | 7 # All .cc, .h, .m, and .mm files under browser except for: |
8 # * tests and mocks. | 8 # * tests and mocks. |
9 # * code below browser/chromeos | 9 # * code below browser/chromeos |
10 # * code below browser/extensions | 10 # * code below browser/extensions |
(...skipping 3360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3371 ['enable_plugin_installation==1', { | 3371 ['enable_plugin_installation==1', { |
3372 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], | 3372 'sources': [ '<@(chrome_browser_plugin_installation_sources)' ], |
3373 }], | 3373 }], |
3374 ['enable_app_list==1', { | 3374 ['enable_app_list==1', { |
3375 'dependencies': [ | 3375 'dependencies': [ |
3376 '../ui/app_list/app_list.gyp:app_list', | 3376 '../ui/app_list/app_list.gyp:app_list', |
3377 ] | 3377 ] |
3378 }], | 3378 }], |
3379 ['enable_managed_users==1', { | 3379 ['enable_managed_users==1', { |
3380 'sources': [ '<@(chrome_browser_supervised_user_sources)' ], | 3380 'sources': [ '<@(chrome_browser_supervised_user_sources)' ], |
| 3381 'conditions' : [ |
| 3382 [ 'chromeos==1', { |
| 3383 'dependencies': [ |
| 3384 '<(DEPTH)/components/components.gyp:user_manager', |
| 3385 ] |
| 3386 }] |
| 3387 ] |
3381 }], | 3388 }], |
3382 ['enable_webrtc==1', { | 3389 ['enable_webrtc==1', { |
3383 'sources': [ '<@(chrome_browser_webrtc_sources)' ] | 3390 'sources': [ '<@(chrome_browser_webrtc_sources)' ] |
3384 }], | 3391 }], |
3385 ['enable_service_discovery==1', { | 3392 ['enable_service_discovery==1', { |
3386 'sources': [ '<@(chrome_browser_service_discovery_sources)' ] | 3393 'sources': [ '<@(chrome_browser_service_discovery_sources)' ] |
3387 }], | 3394 }], |
3388 ['enable_mdns==1', { | 3395 ['enable_mdns==1', { |
3389 'sources' : [ '<@(chrome_browser_mdns_sources)' ] | 3396 'sources' : [ '<@(chrome_browser_mdns_sources)' ] |
3390 }], | 3397 }], |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3593 'package_name': 'org/chromium/chrome/browser', | 3600 'package_name': 'org/chromium/chrome/browser', |
3594 'template_deps': ['browser/android/tab_load_status.h'], | 3601 'template_deps': ['browser/android/tab_load_status.h'], |
3595 }, | 3602 }, |
3596 'includes': [ '../build/android/java_cpp_template.gypi' ], | 3603 'includes': [ '../build/android/java_cpp_template.gypi' ], |
3597 }, | 3604 }, |
3598 ], | 3605 ], |
3599 }, | 3606 }, |
3600 ], | 3607 ], |
3601 ], | 3608 ], |
3602 } | 3609 } |
OLD | NEW |