OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 ], | 453 ], |
454 'include_dirs': [ | 454 'include_dirs': [ |
455 '<(DEPTH)/breakpad/src', | 455 '<(DEPTH)/breakpad/src', |
456 ], | 456 ], |
457 }], | 457 }], |
458 ['enable_printing!=0', { | 458 ['enable_printing!=0', { |
459 'dependencies': [ | 459 'dependencies': [ |
460 '<(DEPTH)/printing/printing.gyp:printing', | 460 '<(DEPTH)/printing/printing.gyp:printing', |
461 ], | 461 ], |
462 }], | 462 }], |
463 ['OS!="ios" and chrome_multiple_dll!=1', { | |
464 'dependencies': [ | |
465 '<(DEPTH)/webkit/glue/webkit_glue.gyp:glue', | |
466 ], | |
467 }], | |
468 ['OS=="android"', { | 463 ['OS=="android"', { |
469 'sources/': [ | 464 'sources/': [ |
470 ['exclude', '^common/chrome_version_info_posix.cc'], | 465 ['exclude', '^common/chrome_version_info_posix.cc'], |
471 ['exclude', '^common/service_'], | 466 ['exclude', '^common/service_'], |
472 ], | 467 ], |
473 'sources!': [ | 468 'sources!': [ |
474 'common/badge_util.cc', | 469 'common/badge_util.cc', |
475 'common/extensions/api/extension_action/browser_action_handler.cc', | 470 'common/extensions/api/extension_action/browser_action_handler.cc', |
476 'common/extensions/api/extension_action/page_action_handler.cc', | 471 'common/extensions/api/extension_action/page_action_handler.cc', |
477 'common/extensions/api/spellcheck/spellcheck_handler.cc', | 472 'common/extensions/api/spellcheck/spellcheck_handler.cc', |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
751 'common/metrics/proto/user_action_event.proto', | 746 'common/metrics/proto/user_action_event.proto', |
752 ], | 747 ], |
753 'variables': { | 748 'variables': { |
754 'proto_in_dir': 'common/metrics/proto', | 749 'proto_in_dir': 'common/metrics/proto', |
755 'proto_out_dir': 'chrome/common/metrics/proto', | 750 'proto_out_dir': 'chrome/common/metrics/proto', |
756 }, | 751 }, |
757 'includes': [ '../build/protoc.gypi' ], | 752 'includes': [ '../build/protoc.gypi' ], |
758 }, | 753 }, |
759 ], | 754 ], |
760 } | 755 } |
OLD | NEW |