| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 '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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 'common/web_resource/web_resource_unpacker.cc', | 251 'common/web_resource/web_resource_unpacker.cc', |
| 252 'common/web_resource/web_resource_unpacker.h', | 252 'common/web_resource/web_resource_unpacker.h', |
| 253 'common/worker_thread_ticker.cc', | 253 'common/worker_thread_ticker.cc', |
| 254 'common/worker_thread_ticker.h', | 254 'common/worker_thread_ticker.h', |
| 255 'common/zip.cc', # Requires zlib directly. | 255 'common/zip.cc', # Requires zlib directly. |
| 256 'common/zip.h', | 256 'common/zip.h', |
| 257 'common/zip_internal.cc', | 257 'common/zip_internal.cc', |
| 258 'common/zip_internal.h', | 258 'common/zip_internal.h', |
| 259 'common/zip_reader.cc', | 259 'common/zip_reader.cc', |
| 260 'common/zip_reader.h', | 260 'common/zip_reader.h', |
| 261 | |
| 262 # Generated by the api.gyp:api target | |
| 263 '<(SHARED_INTERMEDIATE_DIR)/chrome/common/extensions/api/generated_api.h
' | |
| 264 ], | 261 ], |
| 265 'conditions': [ | 262 'conditions': [ |
| 266 ['OS=="android"', { | 263 ['OS=="android"', { |
| 267 'sources/': [ | 264 'sources/': [ |
| 268 ['exclude', '^common/service_'], | 265 ['exclude', '^common/service_'], |
| 269 ], | 266 ], |
| 270 }], | 267 }], |
| 271 ['OS=="win"', { | 268 ['OS=="win"', { |
| 272 'include_dirs': [ | 269 'include_dirs': [ |
| 273 '<(DEPTH)/third_party/wtl/include', | 270 '<(DEPTH)/third_party/wtl/include', |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 'common/metrics/proto/user_action_event.proto', | 486 'common/metrics/proto/user_action_event.proto', |
| 490 ], | 487 ], |
| 491 'variables': { | 488 'variables': { |
| 492 'proto_in_dir': 'common/metrics/proto', | 489 'proto_in_dir': 'common/metrics/proto', |
| 493 'proto_out_dir': 'chrome/common/metrics/proto', | 490 'proto_out_dir': 'chrome/common/metrics/proto', |
| 494 }, | 491 }, |
| 495 'includes': [ '../build/protoc.gypi' ], | 492 'includes': [ '../build/protoc.gypi' ], |
| 496 }, | 493 }, |
| 497 ], | 494 ], |
| 498 } | 495 } |
| OLD | NEW |