| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'includes': [ | 5 'includes': [ |
| 6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. | 6 '../../chrome/chrome_android_paks.gypi', # Included for the list of pak reso
urces. |
| 7 '../../build/util/version.gypi' | 7 '../../build/util/version.gypi' |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 }, | 92 }, |
| 93 }, | 93 }, |
| 94 'includes': [ '../../build/android/jinja_template.gypi' ], | 94 'includes': [ '../../build/android/jinja_template.gypi' ], |
| 95 }, | 95 }, |
| 96 { | 96 { |
| 97 # The base library used in both ChromePublic and ChromeSyncShell. | 97 # The base library used in both ChromePublic and ChromeSyncShell. |
| 98 'target_name': 'libchrome_public_base', | 98 'target_name': 'libchrome_public_base', |
| 99 'type': 'none', | 99 'type': 'none', |
| 100 'dependencies': [ | 100 'dependencies': [ |
| 101 '../../chrome/chrome.gyp:chrome_android_core', | 101 '../../chrome/chrome.gyp:chrome_android_core', |
| 102 # TODO(yfriedman): move this DEP to chrome_android_core to be shared |
| 103 # between internal/external. |
| 104 '../../third_party/cld_2/cld_2.gyp:cld2_dynamic', |
| 102 ], | 105 ], |
| 103 'include_dirs': [ | 106 'include_dirs': [ |
| 104 '../..', | 107 '../..', |
| 105 ], | 108 ], |
| 106 'conditions': [ | 109 'conditions': [ |
| 107 # TODO(yfriedman): move this DEP to chrome_android_core to be shared | |
| 108 # between internal/external. | |
| 109 ['cld_version==2', { | |
| 110 'dependencies': [ | |
| 111 '../../third_party/cld_2/cld_2.gyp:cld2_dynamic', | |
| 112 ], | |
| 113 }], | |
| 114 # conditions for order_text_section | 110 # conditions for order_text_section |
| 115 # Cygprofile methods need to be linked into the instrumented build. | 111 # Cygprofile methods need to be linked into the instrumented build. |
| 116 ['order_profiling!=0', { | 112 ['order_profiling!=0', { |
| 117 'conditions': [ | 113 'conditions': [ |
| 118 ['OS=="android"', { | 114 ['OS=="android"', { |
| 119 'dependencies': [ '../../tools/cygprofile/cygprofile.gyp:cygprofil
e' ], | 115 'dependencies': [ '../../tools/cygprofile/cygprofile.gyp:cygprofil
e' ], |
| 120 }], | 116 }], |
| 121 ], | 117 ], |
| 122 }], # order_profiling!=0 | 118 }], # order_profiling!=0 |
| 123 ], | 119 ], |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 } | 408 } |
| 413 ], | 409 ], |
| 414 ], | 410 ], |
| 415 } | 411 } |
| 416 | 412 |
| 417 # Local Variables: | 413 # Local Variables: |
| 418 # tab-width:2 | 414 # tab-width:2 |
| 419 # indent-tabs-mode:nil | 415 # indent-tabs-mode:nil |
| 420 # End: | 416 # End: |
| 421 # vim: set expandtab tabstop=2 shiftwidth=2: | 417 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |