Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # Setting these two variables allows other targets to use the | 8 # Setting these two variables allows other targets to use the |
| 9 # sync_proto_sources variable as the list of sync protocol buffer files. | 9 # sync_proto_sources variable as the list of sync protocol buffer files. |
| 10 'sync_proto_sources_dir': 'protocol', | 10 'sync_proto_sources_dir': 'protocol', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 44 'variables': { 'enable_wexit_time_destructors': 1, }, | 44 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 45 'defines': [ | 45 'defines': [ |
| 46 'SYNC_IMPLEMENTATION', | 46 'SYNC_IMPLEMENTATION', |
| 47 ], | 47 ], |
| 48 'include_dirs': [ | 48 'include_dirs': [ |
| 49 '..', | 49 '..', |
| 50 ], | 50 ], |
| 51 'dependencies': [ | 51 'dependencies': [ |
| 52 '../base/base.gyp:base', | 52 '../base/base.gyp:base', |
| 53 '../base/base.gyp:base_i18n', | 53 '../base/base.gyp:base_i18n', |
| 54 '../components/components.gyp:invalidation_public', | |
|
droger
2015/09/09 08:29:08
Can we remove this?
| |
| 54 '../crypto/crypto.gyp:crypto', | 55 '../crypto/crypto.gyp:crypto', |
| 55 '../google_apis/google_apis.gyp:google_apis', | 56 '../google_apis/google_apis.gyp:google_apis', |
| 56 '../net/net.gyp:net', | 57 '../net/net.gyp:net', |
| 57 '../sql/sql.gyp:sql', | 58 '../sql/sql.gyp:sql', |
| 59 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', | |
| 58 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 60 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
| 59 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 61 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 60 '../third_party/zlib/zlib.gyp:zlib', | 62 '../third_party/zlib/zlib.gyp:zlib', |
| 61 '../url/url.gyp:url_lib', | 63 '../url/url.gyp:url_lib', |
| 62 'attachment_store_proto', | 64 'attachment_store_proto', |
| 63 'sync_proto', | 65 'sync_proto', |
| 64 ], | 66 ], |
| 65 'export_dependent_settings': [ | 67 'export_dependent_settings': [ |
| 66 'sync_proto', | 68 'sync_proto', |
| 67 ], | 69 ], |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 446 'util/get_session_name.cc', | 448 'util/get_session_name.cc', |
| 447 'util/get_session_name.h', | 449 'util/get_session_name.h', |
| 448 'util/get_session_name_ios.h', | 450 'util/get_session_name_ios.h', |
| 449 'util/get_session_name_ios.mm', | 451 'util/get_session_name_ios.mm', |
| 450 'util/get_session_name_linux.cc', | 452 'util/get_session_name_linux.cc', |
| 451 'util/get_session_name_linux.h', | 453 'util/get_session_name_linux.h', |
| 452 'util/get_session_name_mac.h', | 454 'util/get_session_name_mac.h', |
| 453 'util/get_session_name_mac.mm', | 455 'util/get_session_name_mac.mm', |
| 454 'util/get_session_name_win.cc', | 456 'util/get_session_name_win.cc', |
| 455 'util/get_session_name_win.h', | 457 'util/get_session_name_win.h', |
| 458 'util/invalidation_helper.cc', | |
| 459 'util/invalidation_helper.h', | |
| 456 'util/logging.cc', | 460 'util/logging.cc', |
| 457 'util/logging.h', | 461 'util/logging.h', |
| 458 'util/nigori.cc', | 462 'util/nigori.cc', |
| 459 'util/nigori.h', | 463 'util/nigori.h', |
| 460 'util/time.cc', | 464 'util/time.cc', |
| 461 'util/time.h', | 465 'util/time.h', |
| 462 ], | 466 ], |
| 463 | 467 |
| 464 'conditions': [ | 468 'conditions': [ |
| 465 ['OS=="linux" and chromeos==1', { | 469 ['OS=="linux" and chromeos==1', { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 540 }, | 544 }, |
| 541 'includes': [ | 545 'includes': [ |
| 542 '../build/protoc.gypi' | 546 '../build/protoc.gypi' |
| 543 ], | 547 ], |
| 544 'defines': [ | 548 'defines': [ |
| 545 'SYNC_IMPLEMENTATION' | 549 'SYNC_IMPLEMENTATION' |
| 546 ], | 550 ], |
| 547 }, | 551 }, |
| 548 ], | 552 ], |
| 549 } | 553 } |
| OLD | NEW |