| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'common', | 8 'target_name': 'common', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'common/child_process_logging_mac.mm', | 74 'common/child_process_logging_mac.mm', |
| 75 'common/child_process_logging_win.cc', | 75 'common/child_process_logging_win.cc', |
| 76 'common/chrome_content_client.cc', | 76 'common/chrome_content_client.cc', |
| 77 'common/chrome_content_client.h', | 77 'common/chrome_content_client.h', |
| 78 'common/chrome_notification_types.h', | 78 'common/chrome_notification_types.h', |
| 79 'common/chrome_plugin_messages.h', | 79 'common/chrome_plugin_messages.h', |
| 80 'common/chrome_result_codes.h', | 80 'common/chrome_result_codes.h', |
| 81 'common/chrome_sandbox_type_mac.h', | 81 'common/chrome_sandbox_type_mac.h', |
| 82 'common/chrome_utility_messages.h', | 82 'common/chrome_utility_messages.h', |
| 83 'common/chrome_version_info.cc', | 83 'common/chrome_version_info.cc', |
| 84 'common/chrome_version_info_chromeos.cc', |
| 84 'common/chrome_version_info_linux.cc', | 85 'common/chrome_version_info_linux.cc', |
| 85 'common/chrome_version_info_mac.mm', | 86 'common/chrome_version_info_mac.mm', |
| 86 'common/chrome_version_info_win.cc', | 87 'common/chrome_version_info_win.cc', |
| 87 'common/chrome_version_info.h', | 88 'common/chrome_version_info.h', |
| 88 'common/cloud_print/cloud_print_class_mac.h', | 89 'common/cloud_print/cloud_print_class_mac.h', |
| 89 'common/cloud_print/cloud_print_class_mac.mm', | 90 'common/cloud_print/cloud_print_class_mac.mm', |
| 90 'common/cloud_print/cloud_print_proxy_info.cc', | 91 'common/cloud_print/cloud_print_proxy_info.cc', |
| 91 'common/cloud_print/cloud_print_proxy_info.h', | 92 'common/cloud_print/cloud_print_proxy_info.h', |
| 92 'common/common_api.h', | 93 'common/common_api.h', |
| 93 'common/common_message_generator.cc', | 94 'common/common_message_generator.cc', |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 '-lXss', | 275 '-lXss', |
| 275 '-lXext', | 276 '-lXext', |
| 276 ], | 277 ], |
| 277 }, | 278 }, |
| 278 }], | 279 }], |
| 279 ['OS=="linux" and selinux==1', { | 280 ['OS=="linux" and selinux==1', { |
| 280 'dependencies': [ | 281 'dependencies': [ |
| 281 '../build/linux/system.gyp:selinux', | 282 '../build/linux/system.gyp:selinux', |
| 282 ], | 283 ], |
| 283 }], | 284 }], |
| 285 ['chromeos==0', { |
| 286 'sources!': [ |
| 287 'common/chrome_version_info_chromeos.cc', |
| 288 ], |
| 289 }, { |
| 290 'sources!': [ |
| 291 'common/chrome_version_info_linux.cc', |
| 292 ], |
| 293 }], |
| 284 ['OS=="mac"', { | 294 ['OS=="mac"', { |
| 285 'dependencies': [ | 295 'dependencies': [ |
| 286 '../third_party/mach_override/mach_override.gyp:mach_override', | 296 '../third_party/mach_override/mach_override.gyp:mach_override', |
| 287 ], | 297 ], |
| 288 'include_dirs': [ | 298 'include_dirs': [ |
| 289 '../third_party/GTM', | 299 '../third_party/GTM', |
| 290 ], | 300 ], |
| 291 }], | 301 }], |
| 292 ['remoting==1', { | 302 ['remoting==1', { |
| 293 'dependencies': [ | 303 'dependencies': [ |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 'common/safe_browsing/csd.proto' | 450 'common/safe_browsing/csd.proto' |
| 441 ], | 451 ], |
| 442 'variables': { | 452 'variables': { |
| 443 'proto_in_dir': 'common/safe_browsing', | 453 'proto_in_dir': 'common/safe_browsing', |
| 444 'proto_out_dir': 'chrome/common/safe_browsing', | 454 'proto_out_dir': 'chrome/common/safe_browsing', |
| 445 }, | 455 }, |
| 446 'includes': [ '../build/protoc.gypi' ], | 456 'includes': [ '../build/protoc.gypi' ], |
| 447 }, | 457 }, |
| 448 ], | 458 ], |
| 449 } | 459 } |
| OLD | NEW |